问问题
4070 次
1 回答
0
在 prestashop 1.4 中,您需要编辑product.js
. 查找findCombination
功能和编辑。
$('div#attributes select').each(function(){
choice.push($(this).val());
});
经过:
$('div#attributes input[type=radio]:checked').each(function(){
choice.push($(this).val());
});
在product.tpl
你需要修改文件
<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>
于 2013-08-20T07:37:14.753 回答