2014-03-25 6 views
0

제품 페이지의 특성 사이에 줄을 추가해야합니다 (prestashop). 제 경우의 "크기"가 attribute_label이고, 그 속성 뒤에 group_5 "Size"-> 다음과 같은 것을 추가하십시오 : "여기에 크기를 찾으십시오." (Prestashop : 속성 크기 다음에 자체 행을 추가하는 방법은 무엇입니까?

  <div class="product_attributes"> 
      {if isset($groups)} 
      <!-- attributes --> 
      <div id="attributes"> 
      <div class="clear"></div> 
      {foreach from=$groups key=id_attribute_group item=group} 
       {if $group.attributes|@count} 
        <fieldset class="attribute_fieldset"> 
         <label class="attribute_label" for="group_{$id_attribute_group|intval}">{$group.name|escape:'htmlall':'UTF-8'} :&nbsp;</label> 
         {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" /><br /> 
             {/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} 
      </div> 
     {/if} 
+1

무엇이 당신의 질문입니까? 어디에 넣을 지 알고 있습니다. 무엇을 넣을 지 알고 있습니다. –

+1

콘솔에 넣고 싶다면 바닥에 거의 내려 놓으십시오. 바로 ''바로 아래에 놓습니다. –

+0

아니요. 모든 속성 뒤에 새로운 코드가 표시됩니다. 나는 그것을 여기에서 볼 수있다 : http://bijutaniki.com/prysteni/8-prysten-na-nastroenieto.html 나는이 코드를 크기 뒤에 만 보여주고 싶다 (불가리아어로 размер). –

답변

0
사용할 수

: product.tpl에서

enter image description here

의 모양 :처럼 될

<p class="find">Find your size in our guide <a href="htttp://bijutaniki.com/#">here</a></p> 

최종 모양의 필요 :

이 코드를 추가하려면 $ group.name == 'Size'} 조건부. 아래에 추가하십시오. group.type == select 조건부 엘.

{if ($group.name == 'Size')} 
<p class="find">Find your size in our guide <a href="htttp://bijutaniki.com/#">here</a></p> 
{/if} 

'크기'속성을 다른 이름으로 변경하십시오.