Site Overlay

Change the ADD to WooCommerce cart post

This article describes how to change the WooCommerce Add to Cart caption change.

The following command changes the text "ADD TO CART" on the category page.

Likewise, for variated products, it is useful to change the text "OPTIONS" to "ADD TO CART" or "BUY NOW".

Add the following command, with a sales space at the bottom of the view> theme editor> functions.php file.

To change add to cart text on product archives(Collection) page
add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );  
function woocommerce_custom_product_add_to_cart_text() {
    return __( 'Buy Now', 'woocommerce' );
}
image 5
Change the ADD to WooCommerce cart post

Changes the ADD to CART text on the product detail page.

To change add to cart text on single product page
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' ); 
function woocommerce_custom_single_add_to_cart_text() {
    return __( 'Buy Now', 'woocommerce' ); 
}

image 3
Arif Akyüz Content Producer Cyber Security Expert

Arif Akyüz
Content Producer & Cyber Security Expert
[email protected]