0

我想在我的 Prestashop 商店的注册页面中添加一个群组访问字段,那么有人会帮我解决这个问题吗?

4

1 回答 1

0
  1. 通过管理面板创建所有组
  2. 修改主题文件夹中的 authentification.tpl :

添加新字段:

<input type="radio" name="id_group" id="id_group1" value="1" {if isset($smarty.post.id_group) && $smarty.post.id_group == '1'}checked="checked"{/if} />
<input type="radio" name="id_group" id="id_group2" value="2" {if isset($smarty.post.id_group) && $smarty.post.id_group == '2'}checked="checked"{/if} />
  1. 修改控制器AuthController.php(保存用户的地方)

$id_group = (Tools::getIsset('id_group')) ?工具::getValue('id_group') : 1;

在官方论坛上我发现了这个: http: //www.prestashop.com/forums/topic/59057-solved-change-user-group-after-registration/

我希望它可以帮助。

祝你好运

于 2013-09-17T12:59:47.550 回答