Jump to content
thirty bees forum

Recommended Posts

Posted

Hi people,

I am running 1.6.1.18

Theme is default-bootstrap

Customer group is set to display prices EXCLUDING Tax as we are B2B company.

Taxes are set to Enable Tax = Yes and Display Tax in Shopping Cart = Yes

Example of order summary page... Total products (GST excl.) $ 499.00 Total shipping Free shipping! Total (GST excl.) $ 499.00 GST $ 74.85 Total $ 499.00

To me this does not make sense as the Total should be IMO the sum of $499 + $74.85 e.g. $573.85

What is interesting is that on the order payment page the calculation is how I would like the order summary page to display...

Total products (GST excl.) $ 499.00 Total shipping Free Shipping! Total (GST excl.) $ 499.00 GST $ 74.85 Total $ 573.85

Perhaps this is possible by editing a .tpl file? Can you please advise how I can make the order summary page calculate the Total price the same way as the order payment page does.

Thanks

Posted

Dont invest in PS 1.6, Migrate your PS 1.6 site too ThirtyBees https://thirtybees.com/migrate/

PS Version 1.6 roadmap PrestaShop has entered maintenance mode since the release of PrestaShop 1.7, in November 2016. We plan on keeping supporting it for two years, until October 2018. We want to release monthly “patch” (bugfix) releases until

Posted

I would have to try again on a dummy installation as I do not recall the exact error as it was a few months ago. I've spent weeks adding content and modifying files on the current installation and would be too scared to attempt a migration and if it broke I could not repair it on my own.

Posted

We do offer a migration service where we handle the migration for you, https://store.thirtybees.com/services/migration-from-prestashop

Posted

I was able to achieve the desired cart summary total by commenting out the tax exclusive arguments in shopping-cart.tpl

{l s='Total'}

{hook h="displayCartTotalPriceLabel"}

                {*

                {if $use_taxes}
                    {if $priceDisplay}
                        <td colspan="2" class="price" id="total_price_container">
                            <span id="total_price_without_tax">{displayPrice price=$total_price_without_tax}</span>
                        </td>
                    {else}
                *}
                        <td colspan="2" class="price" id="total_price_container">
                            <span id="total_price">{displayPrice price=$total_price}</span>
                        </td>

                {*  
                    {/if}
                {else}
                    <td colspan="2" class="price" id="total_price_container">
                        <span id="total_price_without_tax">{displayPrice price=$total_price_without_tax}</span>
                    </td>
                {/if}

                *}  

            </tr>

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...