Prestashop ストアの登録ページにグループ アクセスのフィールドを追加したいのですが、解決策を教えてくれる人はいますか?
質問する
740 次
1 に答える
0
- 管理パネルからすべてのグループを作成する
- テーマ フォルダーの 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} />
- コントローラー 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 に答える