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

后端 未结 8 1461
你的背包
你的背包 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:34

    If you're looking to change dropdown text from “Choose an option” in Woocommerce, add following to functions.php file in your theme:

    add_filter('woocommerce_dropdown_variation_attribute_options_args', 'my_change_choose_an_option_text_func', 10, 2);
    
    function my_change_choose_an_option_text_func($args){ 
        $args['show_option_none'] = __( 'New Text', 'your_text_domain' ); 
        return $args; 
    }
    

提交回复
热议问题