lacee1986
8/9/2016 - 3:48 PM

Change "Add to cart" text

Change "Add to cart" text

/* Change Add to Cart Text */
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' );    // 2.1 +
function woo_custom_cart_button_text() {
        return __( 'Add to Bag', 'woocommerce' );
}