• Resolved ellesocial

    (@ellesocial)


    Hi, I would like to change the button on the products in my shop page without changing the button in the product description. I would like the shop page button to say ‘Learn More’ and the button within the product description to say ‘Subscribe’ can anyone help? (I need it to be clear the customers can click to read about the service for sale before purchasing)

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @ellesocial

    Please add below code snippet into your active theme functions.php

    add_filter('woocommerce_product_add_to_cart_text', 'webtoffee_archive_custom_addtocart_button_text', 10, 2);
    
    function webtoffee_archive_custom_addtocart_button_text($var, $instance)
    {
        if(is_shop()){
            
        $var =  __('Read More', 'woocommerce');
        
        }
        return $var;
    }

    Please leave a review for the plugin here.

Viewing 1 replies (of 1 total)
  • The topic ‘Change button text on shop page’ is closed to new replies.