Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. if(!function_exists('woo_discount_rules_price_strikeout_display_only_discounted_price')){
  2. function woo_discount_rules_price_strikeout_display_only_discounted_price($item_price, $product){
  3. $item_price = preg_replace('/<del>.*<\/del>/', '', $item_price);
  4. return $item_price;
  5. }
  6. }
  7.  
  8. add_filter('woo_discount_rules_price_strikeout_after_discount_price', 'woo_discount_rules_price_strikeout_display_only_discounted_price', 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement