我使用Prestashop 1.7创建了新模块,我想按条件隐藏产品价格。
我认为我们需要在product-price-and-shipping
中隐藏类为miniatures/product.tpl
的div,但是我无法将变量传递给此文件来执行条件。
谁能告诉我如何将变量传递到此文件?
注意:变量$packfilter
是一个布尔值,来自配置表(Configuration::get('PACKFILTER_LIVE_MODE')
)。
但是如何将变量$packfilter
传递给模板?
这是我要更改的:
{block name='product_price_and_shipping'}
{if $product.show_price && $packfilter}
<div class="product-price-and-shipping">
{if $product.has_discount}
{hook h='displayProductPriceBlock' product=$product type="old_price"}
<span class="sr-only">{l s='Regular price' d='Shop.Theme.Catalog'}</span>
<span class="regular-price">{$product.regular_price}</span>
{if $product.discount_type === 'percentage'}
<span class="discount-percentage discount-product">{$product.discount_percentage}</span>
{elseif $product.discount_type === 'amount'}
<span class="discount-amount discount-product">{$product.discount_amount_to_display}</span>
{/if}
{/if}
{hook h='displayProductPriceBlock' product=$product type="before_price"}
<span class="sr-only">{l s='Price' d='Shop.Theme.Catalog'}</span>
<span itemprop="price" class="price">{$product.price}</span>
{hook h='displayProductPriceBlock' product=$product type='unit_price'}
{hook h='displayProductPriceBlock' product=$product type='weight'}
</div>
{/if}
{/block}
感谢您的帮助。