帝國CMS會(huì)員注冊(cè)的時(shí)候,郵箱是必填項(xiàng),但有時(shí)候,我們希望注冊(cè)時(shí)不需要填寫郵箱,但帝國CMS并沒有給這樣一個(gè)可以關(guān)閉的設(shè)置項(xiàng)。
通過本教程就可以實(shí)現(xiàn)取消郵箱必填。
以帝國CMS7.2為例:
打開 /e/member/class/member_registerfun.php 文件
1、查找:
1 2 3 4 | if (!chemail( $email )) { printerror( 'EmailFail' , '' ,1); } |
刪除或者注釋掉
2、繼續(xù)查找:
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、繼續(xù)查找:
1 | if (! $username ||! $password ||! $email ) |
修改為:
1 | if (! $username ||! $password ) |
也就是去掉了email
至此,搞定了!
|
新聞熱點(diǎn)
疑難解答
圖片精選