Digital experiences for all disciplines
New Landing › How can we help? › Atelier › Variable products say “Choose an option” › Reply To: Variable products say “Choose an option”
November 19, 2015 at 3:09 pm
#229961
Had the same problem, here is a solution that works in Woocommerce 2.4. You can add this to your functions.php file. Although I use Code Snippets to make it easier to manage things.
/* Change Woocommerce Default Value Text */
add_filter('gettext', 'choose_option');
add_filter('ngettext', 'choose_option');
function choose_option($translated) {
$translated = str_ireplace('Choose an option', 'Select Size', $translated);
return $translated;
}
This will change the option across your entire site.