Change woocommerce variation dropdown text


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>

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s