V9.5评论列表样式已经模板化了,对于有DIY需求的用户,人性化了不少。
今天给大家介绍下在评论列表增加显示发表人IP
打开config/comment.xml
找到如下代码
<tr>
<td rowspan="3" style="border-bottom: #999999 1px dotted; margin-top: 3px" width="70">
<a href="{$SpaceUrl}" target="_blank"><img alt="{$UserName}" border="1" height="60" src="{$UserFace}" width="60" /></a>
</td>
<td height="25" width="*">
{$Publish} <font color="#999999">(发表时间: {$AddDate} UserIP:{$UserIP})</font></td>
<td>
<font style="font-family: Arial Black; color: #eef0ee; font-size: 32px">{$Floor}</font></td>
</tr>
增加上面红色的代码,加上显示IP功能。
接下来打开
ks_cls/kesion.label.commoncls.asp,找到约185行
LC=Replace(LC,"{$Publish}",publish)
LC=Replace(LC,"{$UserID}",Node.SelectSingleNode("@userid").text)
LC=Replace(LC,"{$UserIP}",Node.SelectSingleNode("@userip").text)
LC=Replace(LC,"{$UserName}",Node.SelectSingleNode("@username").text)
LC=Replace(LC,"{$UserFace}",faceStr)
同样增加上面红色的代码,这样在评论列表就会显示用户IP了,如下图: