Reputation: 7882
In Magento checkout page (/checkout/onepage/)
I want to remove "Subtotal" and the "Shipping & Handling (Flat Rate - Fixed)" (I have always free shipping) lines and let only "Grand Total" with 2 other text lines under it.
How can I do that ?
Please help, I have tried 2 days !
Thanks.
Upvotes: 1
Views: 11940
Reputation: 11
little late, but can be useful to someone else. If you want to hide (disable) shipping options when delivery is free, you can check this extension:
http://www.magentocommerce.com/magento-connect/catalog/product/view/id/12210/ OR http://magento.modulabs.com/mage_en/magento-hide-all-shipping-when-free-shiping-enabled.html
Upvotes: 1
Reputation: 94
In the base template files set: app\design\frontend\base\default\template\checkout\onepage\reviews\totals.phtml find the line
echo $this->renderTotals(null, $_colspan);
and remove this, and you should lose the subtotal and shipping & handling details from the onepage checkout review section.
I'm working with version 1.5.1.0
Upvotes: 1
Reputation: 4978
To remove the "Shipping & Handling (Flat Rate - Fixed)" and only use the Free Shipping go to admin panel -> System-> Configuration -> Shipping Methods http://grab.by/amji
here you can disable the flat rate shipping and enable only the free shipping one.
As for the Subtotal ... if you are charging tax on your website it would be very unprofessional not to show a sub total ... but if you insist on removing it you will have to handle it with some changes at template level.
Upvotes: 3