Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //This will remove the parentheses from the price variation: XXL (+$2.00) becomes XXL +$2.00
- //Hook added in 3.7.2
- add_filter('foxyshop_variation_price_change', 'my_foxyshop_variation_price_change');
- function my_foxyshop_variation_price_change($input) {
- return str_replace(array("(", ")"), "", $input);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement