Comments 1Phil started the conversationJuly 11, 2014 at 1:18pmHi,How can I change the Sale! text on a discounted Woocommerce product. I want to change it to "Pre-release".Thanks 1,070ThemeNectar repliedJuly 12, 2014 at 11:36pm Hey Phil! Try using this in the functions.php file: add_filter('woocommerce_sale_flash', 'change_sale_content', 10, 3); function change_sale_content($content, $post, $product){ $content = ''.__( 'Sale!', 'woocommerce' ).''; return $content; } Cheers Sign in to reply ...
Hi,
How can I change the Sale! text on a discounted Woocommerce product. I want to change it to "Pre-release".
Thanks
Hey Phil!
Try using this in the functions.php file:
add_filter('woocommerce_sale_flash', 'change_sale_content', 10, 3); function change_sale_content($content, $post, $product){ $content = ''.__( 'Sale!', 'woocommerce' ).''; return $content; }
Cheers