2016-11-16 76 views
0

我使用Prestashop調試器{debuger}找到一些值在我的模板上打印出來(我使用Smarty)。爲什麼我不能打印使用Prestashop調試器發現的值?

調試器找到我的產品的值(材料),當我嘗試使用下面的代碼不起作用。

產品名稱:

<h5 itemprop="name"> 
{if isset($product.pack_quantity) && $product.pack_quantity}{$product.pack_quantity|intval|cat:' x '}{/if} 
<a class="product-name" href="{$product.link|escape:'html':'UTF-8'}" title="{$product.name|escape:'html':'UTF-8'}" itemprop="url" > 
{$product.name|truncate:45:'...'|escape:'html':'UTF-8'}{$features.value} 

// THERE IS THE CODE // 
<p>{$products->features}</p> 

// I TRIED WITH THIS TOO // 
<p>{features->value}</p> 

</a> 
</h5> 

Debuger結果:我想顯示 「伯利茲棉花&羊絨」 值 debuger

回答

0

這是因爲{$features}是一個數組。

這將打印你想要什麼:

{$features|@print_r} 

然後訪問該值:

{if isset($features) && $features} 
     <!-- Data sheet --> 
     <section class="page-product-box"> 
      <h3 class="page-product-heading">{l s='Data sheet'}</h3> 
      <table class="table-data-sheet"> 
       {foreach from=$features item=feature} 
       <tr class="{cycle values="odd,even"}"> 
        {if isset($feature.value)} 
        <td>{$feature.name|escape:'html':'UTF-8'}</td> 
        <td>{$feature.value|escape:'html':'UTF-8'}</td> 
        {/if} 
       </tr> 
       {/foreach} 
      </table> 
     </section> 
     <!--end Data sheet --> 
    {/if} 

從默認的自舉的主題product.tpl。

+0

您已經接近解決方案,上面的代碼爲每個產品輸出數字「1」 –

+0

@SashaChirico我編輯了答案。祝你好運。 ; ) – JazZ

+0

@SashaChirico這個答案解決了你的問題? – JazZ