Change the “Add To Cart” button text

Follow these instructions to change the text on the Add to Cart buttons.

NOTE: This will change it for all buttons, not just the gift card button.

1. Download the free Code Snippets plugin https://wordpress.org/plugins/code-snippets/
2. Create a new Snippet with the following code:

function custom_woocommerce_product_single_add_to_cart_text() {
    return 'Add to Bag';
}
add_filter( 'woocommerce_product_single_add_to_cart_text', 'custom_woocommerce_product_single_add_to_cart_text' );

function custom_woocommerce_product_add_to_cart_text() {
    return 'Add to Bag';
}
add_filter( 'woocommerce_product_add_to_cart_text', 'custom_woocommerce_product_add_to_cart_text' );

Note: you can add the code to your functions.php instead of using Code Snippets if you are more comfortable with that.

Skip to content