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

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

    Updated code, made it for anyone still interested

    add_filter( 'woocommerce_dropdown_variation_attribute_options_args', 
    fix_option', 10 ); 
    function fix_option( $args ) {
        $attr = get_taxonomy( $args['attribute'] ); 
        $label = $attr->labels->name; 
        $fix = str_replace('Product', '', $label); 
        $fix = strtolower($fix); /
        $args['show_option_none'] = apply_filters( 'the_title', 'Select a '.$fix ); 
    }
    

提交回复
热议问题