@jasen_gottlieb
To change the button text from "choose an option" in WooCommerce, you can use custom code in your theme's functions.php file or create a custom plugin. Here's an example of how you can do this using code:
1 2 3 4 5 6 |
add_filter( 'woocommerce_dropdown_variation_attribute_options_args', 'custom_dropdown_text' ); function custom_dropdown_text( $args ) { $args['show_option_none'] = __( 'Select an option', 'text-domain' ); return $args; } |
This code will change the button text from "choose an option" to your custom text in WooCommerce product variation dropdowns.