首页 > 网站 > 建站经验 > 正文

ecshop商品详情页用户评论取消E-MAIL邮箱验证的方

2024-04-25 20:41:24
字体:
来源:转载
供稿:网友

ecshop 商品详情页用户评论取消E-MAIL邮箱验证的方法 ,最模板提供教程,转载请注明网址!

该方法同样适用于文章详情页用户评论

1、修改comments_list.lbi文件

将javascript代码中的下面部分删除或者暂时注释掉整理

if (cmt.email.length > 0)

{

if (!(Utils.isEmail(cmt.email)))

{

alert(cmt_error_email);

return false;

}

}

else

{

alert(cmt_empty_email);

return false;

}

2、修改comment.php文件

if (empty($cmt) || !isset($cmt->type) || !isset($cmt->id) || !is_email($cmt->email))

修改为

if (empty($cmt) || !isset($cmt->type) || !isset($cmt->id))

3、

有朋友建议干脆去掉 e-mail 那一栏,那么在做完前两步修改后继续进行如下操作即可

修改 comments_list.lbi

<tr>

<td align="right">E-mail:</td>

<td>

<input type="text" name="email" id="email" maxlength="100" value="{$smarty.session.email|escape}" class="inputBorder"/>

</td>

</tr>

删除

同时将

cmt.email = frm.elements[‘email‘].value;

也删除

如果没有找到if (empty($cmt) || !isset($cmt->type) || !isset($cmt->id) || !is_email($cmt->email))

在comment.php里有 elseif (!is_email($cmt->email))

{

$result[‘error‘] = 1;

$result[‘message‘] = $_LANG[‘error_email‘];

}

把这个注释掉就可以

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表