Order total not showing including tax in shopping cart- Magento 1.9
How to add the tax value in the grand total of the cart page?
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Aviance School is one of the largest web solutions platform in India for developers to learn and share their programming knowledge and build their careers.
Notifications
Step 1:
Update the tax setting as per your need.
admin–>System–>Configuration–>Sales–>Tax
Step 2:
Locate the below file and update.
Path: app/code/core/Mage/Sales/etc/config.xml
Change the below code
FROM:
<after>subtotal,freeshipping,tax_subtotal</after>
TO:
<after>subtotal,freeshipping,tax_subtotal,msrp</after>
<before>grand_total</before>