Hi,
I'm going in circles trying to get rid of the long list of possible shipping methods on "Step One" of the checkout process.
I've tried editing the Shipping Settings under the Store Manager so that all are set to "No'.
I've edited the following files in /products/html/forms/
Offline-orderform.html
2checkout-orderform.html
LinkpointConnect-orderform.html
and removed the whole section that says
<tr>
<TD class="ac_checkout_left_col">Shipping Method:</TD>
<TD class="ac_checkout_right_col">
<!--PASTE SHIPPING METHODS FROM SHIPPING MANAGER BELOW - REPLACE ENTIRE SHIPPING SELECT ELEMENT-->
<select name=Ecom_ShipTo_Method>
<option value="$vform_Ecom_ShipTo_Method"><!--agorascript-pre
if ("$vform_Ecom_ShipTo_Method" eq "") {
return " Select Shipping Method ";
} else {
return "$vform_Ecom_ShipTo_Method";
}
--></option>
<option value="Electronic Delivery">Electronic Delivery</option>
<option value="Local Delivery">Local Delivery</option>
... ... ...
</select>
<!--PASTE SHIPPING METHODS FROM SHIPPING MANAGER ABOVE THIS - REPLACE ENTIRE SHIPPING SELECT ELEMENT-->
</td>
</TR>
And I've verified that it's not there. But I still get the whole list of shipping options, when I don't want any to be displayed! How can I get rid of this?
And while I'm asking: I only ship to the continental US. Where do I edit the list of states/provinces so that change "sticks"?
My store URL is http://www.chillydogsweaters.com/products/agora.cgi
Thanks!