Is there anyway to add a shipping cost line to the cart view code as the biggest volume of enquiries from customers is about shipping charges.
Currently the shipping is only applied after they begin the checkout process.
I appreciate the shipping is based upon not only the weight but also the country of origin however 99% of customers are UK based so to show UK shipping everytime would not be a problem.
Incidently the cart view code I am talking about is below to avoid any confusion:
Currently the shipping is only applied after they begin the checkout process.
I appreciate the shipping is based upon not only the weight but also the country of origin however 99% of customers are UK based so to show UK shipping everytime would not be a problem.
Incidently the cart view code I am talking about is below to avoid any confusion:
<script language="JavaScript">
document.write("NETQUOTEVAR:CARTCOOKIEITEMS " + getCartItem(3)+" <BR>");
document.write("NETQUOTEVAR:CARTCOOKIEVALUE " + getCartItem(1));
</script>
document.write("NETQUOTEVAR:CARTCOOKIEITEMS " + getCartItem(3)+" <BR>");
document.write("NETQUOTEVAR:CARTCOOKIEVALUE " + getCartItem(1));
</script>
Comment