帝國CMS取消會員注冊時候的郵箱必填
發布時間:2019-11-04 來源:未知 瀏覽: 關鍵詞:
帝國CMS會員注冊的時候,郵箱是必填項,但有時候,我們希望注冊時不需要填寫郵箱,但帝國CMS并沒有給這樣一個可以關閉的設置項。
通過本教程就可以實現取消郵箱必填。
以帝國CMS7.2為例:
打開 /e/member/class/member_registerfun.php 文件
1、查找:
1 2 3 4 | if (!chemail( $email )) { printerror( 'EmailFail' , '' ,1); } |
刪除或者注釋掉
2、繼續查找:
1 2 3 4 5 6 7 8 | if ( $pr [ 'regemailonly' ]) { $num = $empire ->gettotal( "select count(*) as total from " .eReturnMemberTable(). " where " .egetmf( 'email' ). "='$email' limit 1" ); if ( $num ) { printerror( 'ReEmailFail' , '' ,1); } } |
刪除或者注釋
3、繼續查找:
1 | if (! $username ||! $password ||! $email ) |
修改為:
1 | if (! $username ||! $password ) |
也就是去掉了email
至此,搞定了!
責任編輯:實速科技