Username or Email
Password:
Forgot Password
How do I disable to shipping calculator on checkout? Our shipping is flat, no calculation required. In the same run, I’d also like to get rid off the coupons but I found nothing to disable them for now.
You could just remove these boxes from template app/design/default/yourtheme/checkout/cart.phtml, find this:
<div class="shopping-cart-collaterals"> <div class="col2-set"> <?php echo $this->getChildHtml('crosssell') ?> <div class="col-2"> <?php echo $this->getChildHtml('coupon') ?> <?php echo $this->getChildHtml('shipping') ?> </div> </div></div>
remove lines with coupon and shipping
- I would love to change the world, but they won’t give me the source code -
Awesome, thanks a lot.
(Just for the record, the path is: app/design/frontend/default/mytheme/template/checkout/cart.phtml)