How do I change button text from “Choose an option” in Woocommerce?

后端 未结 8 1462
你的背包
你的背包 2021-02-08 16:28

How would I go about changing this PHP code to to change Choose an option based on the id of the select element in the Woocommerce plugin for WordPress? I believe I have found t

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-08 16:46

    I found a way with WC 2.5. Add this to functions.php:

    function my_dropdown_variation_attribute_options_html($html, $args){
        $html = str_replace('Choose an option', 'Choose', $html);
        return $html;
    }
    add_filter('woocommerce_dropdown_variation_attribute_options_html', 'my_dropdown_variation_attribute_options_html', 10, 2);
    

提交回复
热议问题