• Resolved outcold

    (@outcold)


    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://www.ads-software.com/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 4 years ago by outcold.
    • This topic was modified 4 years ago by outcold.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hello there,

    hope you are doing well ??

    In this case, you only need to use the second code. We send you on this topic the needed code to change the 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 );

    Let us know any news, please.

    Have a nice day!

    Plugin Author YITHEMES

    (@yithemes)

    Hi there,

    Due to inactivity, we will mark the topic as solved but feel free to open a new one if you have any other issues.

    If you enjoy our support, we will really appreciate if you can leave us a review and a five stars rating -> https://www.ads-software.com/support/plugin/yith-woocommerce-gift-cards/reviews/

    Many thanks and have a nice day!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Button Text’ is closed to new replies.