对于,个人接单给客户做网站优化时候,或者提升考核业绩,有时候难免会做点假!!!
所以:建议官方有个,方便个别像我一样的站长,在修改IP显示和提交时间,可以更方便!自定义配置的选择或开关,包括后台查看留言详情那。随时显示或删除的那种。那就好了。。。
[ 很早以前也是我提出发送邮件时显示IP,是为了更好的快速界别 邮件的真假。已经客户来源。现在感觉个人接单以后这功能,不方便输送询盘。]
——————————————————————————————————
1.65版本:删除修改:IP来源和提交时间 ---发送邮件时
\application\api\controller\Ajax.php
删除:936--942行
$content .= 'IP来源:' . $info['ip'];
if (!empty($info['city'])) {
$content .= "({$info['city']})";
} else {
$content .= "(<a href=\"https://www.baidu.com/s?wd={$info['ip']}\" target=\"_blank\">查看地区</a>)";
}
$content .= '<br/>';
—————————————————————————————————————————————————————————————
删除:948行
$content .= '提交时间:' . MyDate('Y-m-d H:i:s', $info['add_time']) . '<br/>';
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
后台查看邮件详情:
\application\admin\template\guestbook\details.htm
删除:
<div style="display: flex;align-items: center;padding: 15px 0;">
<div style="width: 10%;min-width: 60px;"><strong>IP来源</strong></div>
<div style="width: 90%;">{$row.ip}
{notempty name='$row.city'}
({$row.city})
{else /}
(<a href="https://www.baidu.com/s?wd={$row.ip}" target="_blank">查看地区</a>)
{/notempty}
</div>
</div>
——————————————————