0

我想在家庭特色产品上展示功能。

在 homefeatured.tpl 上,我添加了:

<!-- features -->
{foreach from=$products->features item=feature}
    <!-- wine -->
    {if $feature.id_feature eq 7}
        <p class="feature-wine"><a href="{$products->product_link}" title="{$products->name|escape:html:'UTF-8'}">{$feature.value|escape:'htmlall':'UTF-8'}</a></p>
    {/if}
{/foreach}

但它不起作用......你有什么想法吗?

4

2 回答 2

0

homefeatured 模块不会将这些变量发送到模板。

我的建议是复制这个模块来创建你的模块并添加这些值。

于 2013-04-25T13:11:52.300 回答
0

您需要修改 homefeatured.php 以从模型中获取此变量并通过 Smarty->assign() 将其传递给 Smarty

于 2013-04-26T18:04:46.680 回答