Dropdown required
-
Hi David,
People we’re checking out without making a selection in the dropdown.
So they were cheking out with only the shipment cost as I combined the address country with the shipment amount.In shortcodes.php on line 722 I have changed the next line:
$html .= '<option value="' . __( 'Select an amount', 'paytium' ) . '" selected>' . __( 'Select an amount', 'paytium' ) . '</option>';
to an empty value:
$html .= '<option value="" selected>' . __( 'Select an amount', 'paytium' ) . '</option>';
Otherwise the first text option “select an amount” would validate as a value.
Also I added required as option in <select> like:' . $required . '
Please let me know your thought on this.
Greetings,
Maurits
- The topic ‘Dropdown required’ is closed to new replies.