Customize the Add to Cart button text across your WooCommerce store. This is useful if you want a more action-focused label such as “Buy Now”, “Shop Now”, or “Add to Bag.”
Steps
- Add the code below to your theme’s
functions.php. - Replace
Buy Nowwith your preferred text. - Save the file and refresh your WooCommerce pages.
/**
* Change WooCommerce Add to Cart button text
*/
function custom_woocommerce_add_to_cart_text( $text ) {
return 'Buy Now';
}
add_filter( 'woocommerce_product_add_to_cart_text', 'custom_woocommerce_add_to_cart_text' );