Prestashop - 显示访客不含税价格

时间:2016-10-13 09:16:30

标签: prestashop prestashop-1.6

我在Prestashop 1.6上

当用户是访客或会员时,提及“不含税”。显示在产品表中的价格旁边。

像这样:

enter image description here

我希望这些文字也会出现给访问者。

对于访客来说,它目前如下所示:

enter image description here

3 个答案:

答案 0 :(得分:0)

所以转到客户端 - >组和所有组选择显示HT的价格。

此致

答案 1 :(得分:0)

在后台,客户>群组选择访问者群组点击修改按钮,将税制显示更改为含税,如果是这样,请转到管理员国家选择您所在的国家/地区,点击修改按钮并启用税务显示enter image description here

答案 2 :(得分:0)

认为我找到了解决方案。在product.tpl中,替换

<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}

使用:

<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}