• Resolved winmin

    (@winmin)


    Hi,

    My client wants to change the word “Sale” to “Buy” which are on “Sale Products”. I tried finding it in the templates file but couldn’t find it. Can you help me point to the location where I can change it ?

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Please put following code within your theme’s function.php file:

    add_filter(‘woocommerce_sale_flash’, ‘srv_change_sale_content’, 10, 3);
    function srv_change_sale_content($content, $post, $product){
    $content = ‘<span class=”onsale”>’.__( ‘Buy’, ‘woocommerce’ ).'</span>’;
    return $content;
    }

    Thread Starter winmin

    (@winmin)

    Thanks !! That did the trick. ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change “Sale” to “Buy”’ is closed to new replies.