Change Button Text
-
For some reason my theme want’s to make the button text for gift cards “READ MORE” rather than “ADD TO BASKET”. An earlier blog post gave me the following code. The second function worked for me but not the first
https://wordpress.org/support/topic/change-button-text-36/
if ( ! function_exists('yith_woocommerce_gift_cards_add_to_cart_text_custom' ) ) { function yith_woocommerce_gift_cards_add_to_cart_text_custom( $button_text ){ $button_text = 'ADD TO BASKET'; return $button_text; } } function yith_ywgc_add_to_cart_button_text( $text, $product) { if ($product->get_type() == 'gift-card') { $text = __( 'ADD TO BASKET', 'yith-woocommerce-gift-cards' ); } return $text; } add_filter( 'woocommerce_product_single_add_to_cart_text', 'yith_ywgc_add_to_cart_button_text', 10, 2 );- This topic was modified 5 years, 5 months ago by .
- This topic was modified 5 years, 5 months ago by .
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Change Button Text’ is closed to new replies.