在Prestashop标签主页中显示特定类别



我想在prestashop 1.6主页的"新产品"选项卡中仅显示特定类别的产品

我使用 blocknewproducts_home.tpl

我在下面尝试了此代码,但类别 114 中没有显示任何内容(附有产品(

{if $id_category == 114}
{include file="$tpl_dir./product-list.tpl" products=$new_products class='blocknewproducts tab-pane' id='blocknewproducts'}
{/if}
{if isset($new_products) && $new_products}
{include file="$tpl_dir./product-list.tpl" products=$new_products class='blocknewproducts tab-pane' id='blocknewproducts'}
{else}
<ul id="blocknewproducts" class="blocknewproducts tab-pane">
<li class="alert alert-info">{l s='No new products at this time.' mod='blocknewproducts'}</li>
</ul>
{/if}

感谢您的帮助

尝试宽度 :{if $smarty.get.id_category == 114}

问候

最新更新