2014-01-24 59 views
0

使用prestashop。在表格中顯示產品屬性Prestashop

我有一個產品,我需要的表格形式的這樣http://www.solopress.com/leaflet-printing/bond-leaflet.html

所以它兩端有紙張尺寸頂部顯示這些設置的屬性和各行的紙的數量。

在我的後端我有屬性數量爲250/500等等等等和尺寸A4/A5/A6等

有沒有什麼辦法可以拉從下拉菜單的屬性,並列出它們作爲桌子的價格是一個添加到購物車按鈕?

任何有用的代碼或輸入位都會很好。

非常感謝!

回答

1

這絕對不是一個答案,但應該讓你對問題本身負責。

您的文本不太清楚,但我會假設您並不是說您創建了新的屬性值,並將它們分配在組合標記下。

您必須在product.tpl文件中創建特定的表結構(如需要),並通過smarty forach循環顯示具體的attrbitues。

默認情況下,屬性有三種組類型:select,color,radio。您可以添加新的屬性,但數據庫本身沒有改動(不知道您是否可以通過管理面板添加它們),組類型將保持不變。

這裏是product.tpl文件中的代碼,可以幫助你

    {foreach from=$groups key=id_attribute_group item=group} 
       {if $group.attributes|@count} 
        <fieldset class="attribute_fieldset span5"> 
         <div id="attribute_label_container"> 
         <label class="attribute_label" for="group_{$id_attribute_group|intval}">{$group.name|escape:'htmlall':'UTF-8'} :&nbsp;</label> 
         </div> 
         {assign var="groupName" value="group_$id_attribute_group"} 
         <div class="attribute_list"> 
         {if ($group.group_type == 'select')} 
          <select name="{$groupName}" id="group_{$id_attribute_group|intval}" class="attribute_select" onchange="findCombination();getProductAttribute();"> 
           {foreach from=$group.attributes key=id_attribute item=group_attribute} 
            <option value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} selected="selected"{/if} title="{$group_attribute|escape:'htmlall':'UTF-8'}">{$group_attribute|escape:'htmlall':'UTF-8'}</option> 
           {/foreach} 
          </select> 
         {elseif ($group.group_type == 'color')} 
          <ul id="color_to_pick_list" class="clearfix"> 
           {assign var="default_colorpicker" value=""} 
           {foreach from=$group.attributes key=id_attribute item=group_attribute} 
           <li{if $group.default == $id_attribute} class="selected"{/if}> 
            <a id="color_{$id_attribute|intval}" class="color_pick{if ($group.default == $id_attribute)} selected{/if}" style="background: {$colors.$id_attribute.value};" title="{$colors.$id_attribute.name}" onclick="colorPickerClick(this);getProductAttribute();"> 
             {if file_exists($col_img_dir|cat:$id_attribute|cat:'.jpg')} 
              <img src="{$img_col_dir}{$id_attribute}.jpg" alt="{$colors.$id_attribute.name}" width="20" height="20" /> 
             {/if} 
            </a> 
           </li> 
           {if ($group.default == $id_attribute)} 
            {$default_colorpicker = $id_attribute} 
           {/if} 
           {/foreach} 
          </ul> 

          <input type="hidden" class="color_pick_hidden" name="{$groupName}" value="{$default_colorpicker}" /> 
         {elseif ($group.group_type == 'radio')} 
          <ul> 
           {foreach from=$group.attributes key=id_attribute item=group_attribute} 
            <li> 
             <input type="radio" class="attribute_radio" name="{$groupName}" value="{$id_attribute}" {if ($group.default == $id_attribute)} checked="checked"{/if} onclick="findCombination();getProductAttribute();" /> 
             <span>{$group_attribute|escape:'htmlall':'UTF-8'}</span> 
            </li> 
           {/foreach} 
          </ul> 
         {/if} 
         </div> 
        </fieldset> 
       {/if} 
      {/foreach} 

這將在列表中顯示的結果,你可以看到。要使其顯示在表格結構中,只需編輯正確的group_type IF內容即可。

我希望它能幫助你一點。

BR's

相關問題