Change the “Add to Cart” button text on the WooCommerce shop page
This code snippet changes the "Add to Cart" button text on the shop page in WooCommerce. The text is changed to "My Button Text".
PHP
add_filter( 'woocommerce_product_add_to_cart_text', 'woo_archive_custom_cart_button_text' );
function woo_archive_custom_cart_button_text() {
return __( 'My Button Text', 'woocommerce' );
}
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY
1 Views