1
Hi guys,
As for now I use this in userinfo.php :
// ======== Private messages counter ============
$criteria = new CriteriaCompo(new Criteria('read_msg', 0));
$criteria->add(new Criteria('to_userid', $xoopsUser->getVar('uid')));
$pm_handler =& xoops_gethandler('privmessage');
$pm_counter = $pm_handler->getCount($criteria);
$xoopsTpl->assign( 'pm_counter', $pm_counter );
To render <{pm_counter}> on the profile page. Is there any ready smarty plugin to render the number of pm messages in the theme.html directly?
thanks in advance!