Here’s a snippet to hide option prices in the cart:
<?php | |
/** | |
* Hide option prices in the cart | |
*/ | |
add_filter( 'pewc_show_option_prices_in_cart', '__return_false' ); |
This is how to add a snippet.
Here’s a snippet to hide option prices in the cart:
<?php | |
/** | |
* Hide option prices in the cart | |
*/ | |
add_filter( 'pewc_show_option_prices_in_cart', '__return_false' ); |
This is how to add a snippet.