Forum Replies Created

Viewing 1 post (of 1 total)
  • in reply to: Select Box Text for Variable Product #284402
    pixelcrash
    Member
    Post count: 1

    I did a little hack in the following file:

    wp-content/plugins/woocommerce/includes/wc-template-functions.php

    search for: “wc_dropdown_variation_attribute_options”

    I added following variable:

    $text_dd = "Wählen Sie: " . str_replace('Choose a', '', esc_html( $args['show_option_none']));

    and added it here:

    if ( $args['show_option_none'] ) {
    	$html .= '<option value="">' . $text_dd  . '</option>';
    }

    Is there a better option for this?

Viewing 1 post (of 1 total)