ProductWoocommerce

Change “add to cart” button text

In this example, we replace the add to cart button text with “Next”

    
//change button text function change_add_to_cart_text($text) { $text = 'Next'; // Set the new button text here return $text; } add_filter('woocommerce_product_single_add_to_cart_text', 'change_add_to_cart_text');

Leave a Reply

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