具体方法如下:
后台管理->风格&模版->搜索模版
查找pm_popup_script,编辑pm_popup_script模版,把原先内容替换为:
- <!--Private Message Popup-->
-
- <script type="text/javascript" src="clientscript/pmpopup.js"></script>
- <div id="popupWin" style="display:none; background:#E0E9F8; border-right:1px solid #455690; border-bottom:1px solid #455690; border-left:1px solid #B9C9EF; border-top:1px solid #B9C9EF; position:absolute; z-index:9999; width:230px; height:100px; left:15px; bottom:15px;" onselectstart="return false;" onmousedown="return popupWinespopup_DragDrop(event);" >
- <div id="popupWin_header" style="cursor:default; display:none; position:absolute; left:2px; width:224px; top:2px; height:14px; filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#FFE0E9F8', EndColorStr='#FFFFFFFF');font:12px arial,sans-serif; color:#1F336B; text-decoration:none;">
- <span id="popupWintitleEl">提 示:</span>
- <span style="position:absolute; right:0px; top:0px; cursor:pointer; color:#728EB8; font:bold 12px arial,sans-serif; position:absolute; right:3px;" onclick="popupWinespopup_Close()" onmousedown="event.cancelBubble=true;" onmouseover="style.color='#455690';" onmouseout="style.color='#728EB8';">X</span>
- </div>
- <div id="popupWin_content" onmousedown="event.cancelBubble=true;" style="line-height: 120%; display:none; border-left:1px solid #728EB8; border-top:1px solid #728EB8; border-bottom:1px solid #B9C9EF; border-right:1px solid #B9C9EF; background:#E0E9F8; padding:10px; overflow:hidden; text-align:center; filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#FFE0E9F8', EndColorStr='#FFFFFFFF');position:absolute; left:2px; width:204px; top:20px; height:56px;">
- <span style="color:#1F336B; font:12px arial,sans-serif;">您有 <FONT color=#ff0000>$bbuserinfo[pmunread]</FONT> 个新的悄悄话.</span><br />
- <a style="font:12px arial,sans-serif; color:#1F336B;" onmouseover="style.textDecoration='underline';" onmouseout="style.textDecoration='none';" href="$pmpopupurl" id="popupWinaCnt">在当前窗口阅读</a><br />
- <a style="font:12px arial,sans-serif; color:#1F336B;" onmouseover="style.textDecoration='underline';" onmouseout="style.textDecoration='none';" href="$pmpopupurl" target="_blank">点击这里开新窗口阅读</a>
- </div>
- </div>
-
- <!--/Private Message Popup-->
复制代码
2、
如果要实现如有短消息始终都提示的话请把global文件中
- $vbulletin->userinfo['pmpopup'] == 2
复制代码
替换为
- $vbulletin->userinfo['pmunread']
复制代码
其他不要做改动
在VBB3.53 .3.54 中使用正常
是不是这个效果? |