Viewing 4 replies - 1 through 4 (of 4 total)
  • add this to your child theme’s function.php file

    //Remove Sales Flash
    add_filter(‘woocommerce_sale_flash’, ‘woo_custom_hide_sales_flash’);
    function woo_custom_hide_sales_flash()
    {
    return false;
    }

    Thread Starter diesel43

    (@diesel43)

    Hi,
    Do i put in

    /* You can add custom functions below */

    I tried that but site had white screen of Death

    Regards
    Peter

    Thread Starter diesel43

    (@diesel43)

    added that code but nothing happens? on front end

    Hi, you can add below code into your theme functions.php:

    add_filter('woocommerce_sale_flash', 'custom_woocommerce_sale_flash', 10, 3);
    function custom_woocommerce_sale_flash($flash, $post, $product){
      return '';
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘"Sale!" Text issue proplem’ is closed to new replies.