This topic has 6 replies, 3 voices, and was last updated 8 years, 1 months ago ago by Eva Kemp
How can i change the text from the add to cart button on a product page.
Thanks!
Hello,
Please refer to Woocommerce documentation https://docs.woocommerce.com/document/change-add-to-cart-button-text/
Regards,
Eva Kemp.
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' ); // 2.1 +
function woo_custom_cart_button_text() {
return __( 'My Button Text', 'woocommerce' );
I have added the code but it only changes on the front page, not a single product page
Hello,
You’ve added incorrect code. Please check it now.
Regards,
Robert Hall
It works now, thanks!
Hello,
You’re welcome.
Regards,
Eva Kemp.
The issue related to '‘Change text from add to cart button in productpages’' has been successfully resolved, and the topic is now closed for further responses