G'day,
Iv'e done a search but I can't find whether this has been covered before. I wouild like to change our shipping class drop down box to be defaulted to a "Please Select" option, so our customers have to physically choose their class so instead of:
I would like:
Any help would be great!!
Thanks,
Andy
Iv'e done a search but I can't find whether this has been covered before. I wouild like to change our shipping class drop down box to be defaulted to a "Please Select" option, so our customers have to physically choose their class so instead of:
HTML Code:
<tr><td class="checkout-field-label"><span class="actrequired">Class of Service:</span></td><td class="checkout-field-input"> <SELECT ID='lstClass' NAME='ShippingClass'> <OPTION SELECTED Value='29'>STANDARD POST ($0.00) <OPTION Value='8'>EXPRESS POST X1 ($7.50) </SELECT> </td></tr>
HTML Code:
<tr><td class="checkout-field-label"><span class="actrequired">Class of Service:</span></td><td class="checkout-field-input"> <SELECT ID='lstClass' NAME='ShippingClass'> <OPTION SELECTED value=''>Please select a shipping service. <option Value='29'>STANDARD POST ($0.00) <OPTION Value='8'>EXPRESS POST X1 ($7.50) </SELECT> </td></tr>
Thanks,
Andy
Comment