• Resolved josephzakarias

    (@josephzakarias)


    Hi,

    First I’d like to thank you for your great plugins works very well on my woocommerce. But i have 1 minor issue i need to ask:

    How to change the “Select Options” text on woocommerce button? I need to change it specifically for my preference.

    Thank you for your time and work!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Thanks we have added feature in version 16.3 (we will release soon) to change ‘Select Options” via filter like below:

    add_filter('ppom_select_option_text', 'ppom_select_option_text', 99, 3);
    function ppom_select_option_text($ppom_text, $text, $product) {
        
        $ppom_text = 'My Text';
        return $ppom_text;
    }

    paste above code inside your theme’s functions.php file.

    • This reply was modified 5 years, 3 months ago by N-Media.

    if you like our plugin and support please rate our plugin.

    Thread Starter josephzakarias

    (@josephzakarias)

    Hi,

    Thanks for the update! really appreciate it!
    and you count on me to rate your great plugin. Many thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change “Select Options” Button Text’ is closed to new replies.