Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

3 Answers

up vote 0 down vote accepted

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

share|improve this answer

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

share|improve this answer

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.

share|improve this answer
Thanks for help, I have used the "Free Shipping" but I don't want to show it as a shipping method. All my prices are without tax (it's only a B2B shop) Thanks. – Bizboss Jun 15 '11 at 8:29
So you kinda want to skip the shipping part during checkout right? – ElGabbu Jun 15 '11 at 8:50
yes, and also to add custom 2 lines text under "Grans Total" :) – Bizboss Jun 15 '11 at 9:12
It would require to hack some OTB standard functionality. Are you familiar with controller and model rewrites? – ElGabbu Jun 15 '11 at 9:23
Yes, I have already done similar things before, but I don't know exactly how to do that... which files should I rewrite... – Bizboss Jun 15 '11 at 10:13
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.