0
votes

I am on Prestashop 1.6

When a user is a guest or a member, the mention "tax excl." is displayed next to the price in the products sheets.

Like this :

enter image description here

I would like this text to appear also for the visitors.

For visitors, it currently shoows like this :

enter image description here

3

3 Answers

0
votes

So go to Client -> Group and for all groups choose as price display the HT.

Regards,

0
votes

In Back office, customers > groups choose the visitor group click to modify button, change the tax display to tax incl, if it is like that, go to admin coutries choose your country, click to modify button and enable tax showing enter image description here

0
votes

think I found the solution. In product.tpl, replace

<span id="our_price_display" class="price" itemprop="price" content="{$productPrice}">{convertPrice price=$productPrice|floatval}</span>
                                   {if $tax_enabled  && ((isset($display_tax_label) && $display_tax_label == 1) || !isset($display_tax_label))}
                                        {if $priceDisplay == 1} {l s='tax excl.'}{else} {l s='tax incl.'}{/if}
                                    { /if}

With :

<span id="our_price_display" class="price" itemprop="price" content="{$productPrice}">{convertPrice price=$productPrice|floatval}</span>
                                        {if $priceDisplay == 1} {l s='tax excl.'}{else} {l s='tax incl.'}{/if}