Viewing 3 replies - 1 through 3 (of 3 total)
  • This might help you, if you’re not afraid of adding some custom code to the functions.php of your theme:

    Change add to cart button text

    Hi @amizomi, you can add below code into your theme functions.php:

    add_filter( 'add_to_cart_text', 'custom_cart_button_text' );
    add_filter( 'woocommerce_product_single_add_to_cart_text', 'custom_cart_button_text' );
    add_filter( 'woocommerce_product_add_to_cart_text', 'custom_cart_button_text' ); 
    
    function custom_cart_button_text() {
      return __( 'Your Add to Cart Text', 'woocommerce' );
    }
    Thread Starter amizomi

    (@amizomi)

    Thanks a lot guys! It worked:)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing "Add to cart" text’ is closed to new replies.