If you want to hide sale flash content in woocommerce then add that following code in your functions.php file.

add_filter('woocommerce_sale_flash', 'woocommerce_custom_hide_sales_flash');
function woocommerce_custom_hide_sales_flash()
{
    return false;
}

Have any doubt, then comment here!

Leave a Reply

Your email address will not be published. Required fields are marked *