How To Change The Add To Cart Button Text in WooCommerce

Your call to action button is one of the most important elements on your shop. Add to Cart, Order Now, Buy Now… which is best?

Usually, “Add to Cart” indicates that you are just adding the items to the cart. “Buy Now” can be used to go directly to payment for a single item. However, there are many other words to maximize your conversions. In order to change “Add to Cart” button text in WooCommerce, you’ll need to add the following snippet to your theme’s functions.php file:


function lionplugins_add_to_cart_button_text() {
	return __( 'Buy Now', 'lionplugins' );
}
add_filter( 'woocommerce_product_add_to_cart_text', 'lionplugins_add_to_cart_button_text' );

Leave a Reply

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