Change specific variation dropdown labels:
add_filter( 'woocommerce_dropdown_variation_attribute_options_args',
'bubdev_commerce_set_variation_labels' );
/**
* Change Variation Dropdown Labels
*
* @param array $args The arguments
*
* @return array The arguments
*/
function bubdev_commerce_set_variation_labels( $args ) {
$attribute = get_taxonomy( $args['attribute'] );
if ( $attribute->name === 'pa_variant' ) {
$args['show_option_none'] = __( 'Wählen Sie eine Ausgabe', 'basicbuch' );
}
return $args;
}