我使用的是magento 1.9。我想使用不同的注册表格从前端添加一个客户组作为卖方,保留一般类别注册的注册表单独。
答案 0 :(得分:0)
在您的注册中添加以下字段
<?php
$groups = Mage::helper('customer')->getGroups()->toOptionArray();
foreach ($groups as $group){
echo '<input type="radio" name="group_id" value="'.$group['value'].'" class="validate-radio" >'.$group['label'].'</input><br/>';
}
?>
并在控制器文件中保存以下字段。
$customer->setGroupId($this->getRequest()->getPost(‘group_id’));