在产品列表中,我需要一次显示含税和不含税的产品价格。

我正在使用 Prestashop 的 1.6 版。

现在产品列表中显示的是含税价格。我也想显示不含税的价格。

我怎样才能做到这一点?我一直在寻找解决方案,但找不到适合我的解决方案。

最佳答案

product-list.tpl 中找到以下块:

{foreach from=$products item=product name=products}

添加此以显示不含税的价格:
{convertPrice price=$product.price_tax_exc}

确保在开发过程中 Template compilation 设置为 Force compilation 并且 Cache 设置为 No 在 PrestaShop 后台 -> Advanced Parameters -> Performance

关于php - 如何在 Prestashop 的产品列表中一次显示含税和不含税的产品价格?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23237952/

10-10 03:53