對于,個人接單給客戶做網站優化時候,或者提升考核業績,有時候難免會做點假?。?!
所以:建議官方有個,方便個別像我一樣的站長,在修改IP顯示和提交時間,可以更方便!自定義配置的選擇或開關,包括后臺查看留言詳情那。隨時顯示或刪除的那種。那就好了。。。
[ 很早以前也是我提出發送郵件時顯示IP,是為了更好的快速界別 郵件的真假。已經客戶來源?,F在感覺個人接單以后這功能,不方便輸送詢盤。]
——————————————————————————————————
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>
——————————————————