對(duì)于,個(gè)人接單給客戶做網(wǎng)站優(yōu)化時(shí)候,或者提升考核業(yè)績(jī),有時(shí)候難免會(huì)做點(diǎn)假!!!
所以:建議官方有個(gè),方便個(gè)別像我一樣的站長(zhǎng),在修改IP顯示和提交時(shí)間,可以更方便!自定義配置的選擇或開關(guān),包括后臺(tái)查看留言詳情那。隨時(shí)顯示或刪除的那種。那就好了。。。
[ 很早以前也是我提出發(fā)送郵件時(shí)顯示IP,是為了更好的快速界別 郵件的真假。已經(jīng)客戶來源。現(xiàn)在感覺個(gè)人接單以后這功能,不方便輸送詢盤。]
——————————————————————————————————
1.65版本:刪除修改:IP來源和提交時(shí)間 ---發(fā)送郵件時(shí)
\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\">查看地區(qū)</a>)";
}
$content .= '<br/>';
—————————————————————————————————————————————————————————————
刪除:948行
$content .= '提交時(shí)間:' . MyDate('Y-m-d H:i:s', $info['add_time']) . '<br/>';
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
后臺(tái)查看郵件詳情:
\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">查看地區(qū)</a>)
{/notempty}
</div>
</div>
——————————————————