我有一个具有两个属性的产品,所以请您帮忙进行更改
选择属性1时显示链接或文本
选择属性2时,显示必填文本字段*,以询问客户其他信息,例如(电话号码)。
{foreach from=$groups key=id_attribute_group item=group}
{if !empty($group.attributes)}
<div class="product-variants-item py-2 clearfix">
<div class="control-label float-left font-weight-bold">{$group.name}</div>
<div class="control-item float-right">
{if $group.group_type == 'select'}
<select name="group[{$id_attribute_group}]" id="group_{$id_attribute_group}" class="custom-select" data-product-attribute="{$id_attribute_group}">
{foreach from=$group.attributes key=id_attribute item=group_attribute}
<option value="{$id_attribute}" {if $group_attribute.selected} selected {/if}>{$group_attribute.name}</option>
{/foreach}
</select>
预先感谢