• Resolved alphaambition

    (@alphaambition)


    Hi,

    Thanks for the great plugin!

    Is there a way I can change the ‘Select Amount’ button text on the product category page (domain.com/product-category/gift-cards/)?

    I’ve setup 7 gift cards each with a set price. So, I’d like the buttons to say ‘Buy Now’ instead.

    Thanks!
    Mark

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

    (@pimwick)

    To change the “Select Amount” button text to something else, follow these steps:

    Note: If you prefer, you can put the code into your functions.php file instead of using Code Snippets.

    1. Download the free Code Snippets plugin (https://ww.wp.xz.cn/plugins/code-snippets/)
    2. Create a new Snippet with the following code:

    function custom_pwgc_select_amount_text( $text, $product ) {
        return 'Buy Now';
    }
    add_filter( 'pwgc_select_amount_text', 'custom_pwgc_select_amount_text', 10, 2 );

    Let me know if you have any questions!

    Thread Starter alphaambition

    (@alphaambition)

    Perfect!

    Thanks for you help!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Change ‘Select Amount’ button text’ is closed to new replies.