且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在 Prestashop 的产品列表中一次显示含税和不含税的产品价格?

更新时间:2023-11-30 10:18:28

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

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

添加此项以显示不含税价格:

Add this to display price without tax:

{convertPrice price=$product.price_tax_exc}

确保在开发过程中将模板编译设置为强制编译并将Cache设置为NoPrestaShop 后台 -> 高级参数 -> 性能.

Make sure that during development Template compilation is set to Force compilation and Cache is set to No in PrestaShop back-office -> Advanced Parameters -> Performance.