40
1. when will the right menu will be repair..its hard to 'read'..all are in one line...
2. is the recent comment new position is a permanent thing ?
3. no style for pm/pmlite.php/
include/findusers.php etc
3.
edit i just noticed the envelope with red button indicator for new pm when testing to send new pm.....but maybe a number of pm can be include next time
--------------------------------
---------------
Hope to see new pm indicator on the top user menu
last time i use this in one of my old site for a custom login/user menu
don't know if it will works ..maybe it can be implement in xoops.org
<{php}>
GLOBAL $xoopsUser;
$pm_handler =& xoops_gethandler('privmessage');
$uid = $xoopsUser->getVar('uid');
$criteria = new CriteriaCompo(new Criteria('read_msg', 0));
$criteria->add(new Criteria('to_userid', $uid));
$msgcount = $pm_handler->getCount($criteria);
$GLOBALS['xoopsTpl']->assign('msgcount', $msgcount);
<{/php}>
<{if $msgcount > 0}>
<img border="0" src="<{$xoops_url}>/themes/jimx/myimages/message.gif" title="Private Message"> (<a href="<{$xoops_url}>/viewpmsg.php"><span style="color:#CC0000; font-weight: bold;"><u><{$msgcount}>u>span>a>) |
<{else}>
<img border="0" src="<{$xoops_url}>/themes/jimx/myimages/message.gif" title="Private Message"> (<a href="<{$xoops_url}>/viewpmsg.php"><u>0u>a>) |
<{/if}>