TAG | estimate shipping box magento

As a Magento Developer, one of the most common requests we have is it to remove the default Estimate Shipping and Tax box on the Shopping Cart page.

To do this go to frontend/default/yourtheme/template/checkout/cart/shipping.phtml

Go to line 121 and delete the following code:

<div class="col-2">
<?php if (!$this->getIsVirtual()): echo $this->getChildHtml('shipping'); endif; ?>
</div>

· · ·