2013-08-16 6 views
0

내 제품 페이지에서 제품 속성이 어떻게 보이는지 수정하고 싶습니다.** Prestashop ** - 제품 속성을 수정하는 방법 <select>을 라디오 박스에 추가 하시겠습니까?

기본적으로 속성은 html 태그와 함께 표시됩니다. 이 속성을 html 형식으로 표시하고 내 속성에 설명을 추가하고 싶습니다.

내가 지금까지 시도 product.tpl 파일을 수정하는 것입니다 내가 다음과 같이 변경 한 것 :이 수정으로

<form name="{$groupName}" id="group_{$id_attribute_group|intval}" onchange="javascript:findCombination();{if $colors|@count > 0}$('#wrapResetImages').show('slow');{/if};"> 
        {foreach from=$group.attributes key=id_attribute item=group_attribute} 
         <input type="radio" name="test" value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} checked="checked"{/if} title="{$group_attribute|escape:'htmlall':'UTF-8'}">{$group_attribute|escape:'htmlall':'UTF-8'} 
        {/foreach} </form> 

<select name="{$groupName}" id="group_{$id_attribute_group|intval}" onchange="javascript:findCombination();{if $colors|@count > 0}$('#wrapResetImages').show('slow');{/if};"> 
        {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> 

를, 속성이없는 것 같아 "다음 제품은이 속성과 함께 사용할 수 없습니다 ..."라는 메시지가 항상 표시되어 제품에 더 이상 연결되지 않습니다. 그래서 더 이상 카트에 제품을 추가 할 수없고 특성이 가격에 더 이상 영향을 미치지 않으므로 작동하지 않습니다 ...

제대로 작동하는 방법에 대한 단서가 있습니까? 제품 속성에 어떤 파일이 링크되어 있는지 알고 계십니까? AdminAttributes.php 파일을 수정해야합니까?

덕분에 모든 PrestaShop 버전 1.4에 도움

+0

을 수정해야? – Raza

답변

0

당신은 product.js을 편집해야합니다. findCombination 기능을 찾고 편집하십시오. 에 의해

$('div#attributes select').each(function(){ 
    choice.push($(this).val()); 
}); 

: product.tpl에서

$('div#attributes input[type=radio]:checked').each(function(){ 
    choice.push($(this).val()); 
}); 

당신은 왜 당신이`Form` 필요합니까, 파일을 내가 그것을 얻을 해달라고

<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>