Okay
  Public Ticket #245577
Change Sale! Woocomerce Badge Text
Closed

Comments

  •  1
    Phil started the conversation

    Hi,

    How can I change the Sale! text on a discounted Woocommerce product. I want to change it to "Pre-release".

    Thanks

  •  990
    ThemeNectar replied

    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