Created
March 31, 2025 12:11
-
-
Save xlplugins/d352abbf6cf10e6c2f2378a431814cec to your computer and use it in GitHub Desktop.
FK:Handle multiple minus(-) sign at slide cart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('fkcart_before_cart_items',function (){ | |
add_filter('woocommerce_cart_totals_coupon_html',function($html){ | |
$html= str_replace('-','',$html); | |
return $html; | |
},50); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment