kdash1228 Posted May 11, 2022 Share Posted May 11, 2022 (edited) The Total (in bold) should equal $54.96 (not $51.85). Here is what I am seeing in the cart-summary-total.tpl file. I can't figure out what needs to change to show the correct Total Amount. PS1.7.8.2 <div class="card-block cart-summary-totals"> {block name='cart_summary_tax'} <div class="cart-summary-line"> <span class="label sub">{$cart.subtotals.tax.label}</span> <span class="value sub">{$cart.subtotals.tax.value}</span> </div> {/block} {block name='cart_summary_total'} <div class="cart-summary-line cart-total"> <span class="label">{$cart.totals.total.label} </span> <span class="value">{$cart.totals.total.value}</span> </div> {/block} </div> Edited May 11, 2022 by kdash1228 (see edit history) Link to comment Share on other sites More sharing options...
kdash1228 Posted May 11, 2022 Author Share Posted May 11, 2022 I just fixed it. The code was using the wrong variable. It should be using: {block name='cart_summary_total'} <div class="cart-summary-line cart-total"> <span class="label">{$cart.totals.total_including_tax.label} </span> <span class="value">{$cart.totals.total_including_tax.value}</span> Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now