Advertisement
michaellevelup

Custom woo badge

May 18th, 2022
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. function king_woo_custom_badge($text, $post, $_product){
  2.  
  3.     global $product;
  4.  
  5.     if ( is_product() || is_shop() ){
  6.    
  7.         $r_price = $product->get_regular_price();
  8.  
  9.         if (int()$r_price > 399)
  10.             return '<span class="onsale">_YOUR_CUSTOM_BADGE</span>';
  11.         else
  12.             return;
  13.  
  14.     }
  15. }
  16.  
  17. add_filter('woocommerce_sale_flash', 'king_woo_custom_badge', 10, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement