Disable Shipping Estimate on Basket Page
Disable Shipping Estimate on Basket Page
Is there a way to disable Shipping estimate on the basket page?
Re: Disable Shipping Estimate on Basket Page
looks like this can be done by changing this in basket.aspx page:
<asp:UpdatePanel ID="ShippingEstimateUpdatePanel" runat="server" UpdateMode="Conditional">
To:
<asp:UpdatePanel ID="ShippingEstimateUpdatePanel" runat="server" UpdateMode="Conditional" Visible="False">
<asp:UpdatePanel ID="ShippingEstimateUpdatePanel" runat="server" UpdateMode="Conditional">
To:
<asp:UpdatePanel ID="ShippingEstimateUpdatePanel" runat="server" UpdateMode="Conditional" Visible="False">