Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi

    This doc shows you how to copy and modify the template files in an upgrade safe way

    https://docs.woothemes.com/document/template-structure/

    Once you understand that you will need to copy variable.php and create a coy in your theme.

    Look for this on line 24

    <option value=""><?php echo __( 'Choose an option', 'woocommerce' ) ?>&hellip;</option>

    and replace it with

    <option value=""><?php echo sprintf( __( 'Choose a %s', 'woocommerce' ), $woocommerce->attribute_label( $name ) ) ?>&hellip;</option>

    or you can just replace the ‘Choose an Option’ with the text of your choice

    Thread Starter Deelay2

    (@deelay2)

    Thread Starter Deelay2

    (@deelay2)

    Thanks ?? That worked perfectly ??

    webmystery

    (@webmystery)

    Thanks! Exactly what I needed.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Woocommerce, variation dropdown’ is closed to new replies.