How Can We Help?

Changing the Cart Text In Woocommerce

← Back

Changing the Cart Text In Woocommerce

Are you looking for a way to change the default “add to cart” button text in WooCommerce? This snippet will let you change the text to “Donate Now”, “Add Product”, “Buy”, or whatever you like.

 

  1. Add this code to your theme’s functions.php file or in a site-specific plugin.
  2. Then, just change the “Add Item” text on line 4 to whatever you want.
// Changing Add to Cart button text to custom text in individual product pages
function woo_custom_cart_button_text()
{
return __(‘Add Item’, ‘woocommerce’);
}
add_filter(‘woocommerce_product_single_add_to_cart_text’, ‘woo_custom_cart_button_text’);

// Changing Add to Cart button text to custom text in product archive/listing pages
function woo_custom_product_add_to_cart_text() {
return __( ‘Add Item’, ‘woocommerce’ );
}
add_filter( ‘woocommerce_product_add_to_cart_text’, ‘woo_custom_product_add_to_cart_text’ );