Merge pull request #9333 from roykho/onboard
[onboard wizard] Remove required attribute from currency_code form el…
This commit is contained in:
commit
08365f4145
|
@ -304,7 +304,7 @@ class WC_Admin_Setup_Wizard {
|
|||
<tr>
|
||||
<th scope="row"><label for="currency_code"><?php _e( 'Which currency will your store use?', 'woocommerce' ); ?></label></th>
|
||||
<td>
|
||||
<select id="currency_code" name="currency_code" required style="width:100%;" data-placeholder="<?php esc_attr_e( 'Choose a currency…', 'woocommerce' ); ?>" class="wc-enhanced-select">
|
||||
<select id="currency_code" name="currency_code" style="width:100%;" data-placeholder="<?php esc_attr_e( 'Choose a currency…', 'woocommerce' ); ?>" class="wc-enhanced-select">
|
||||
<option value=""><?php _e( 'Choose a currency…', 'woocommerce' ); ?></option>
|
||||
<?php
|
||||
foreach ( get_woocommerce_currencies() as $code => $name ) {
|
||||
|
|
Loading…
Reference in New Issue