7
Thanks to everyone who lent a hand, I ended up having my programmer piece together the bits on this thread. For anyone who is interested, this is how you do it:
So in the template file u will have :
<{if $moderator == true}>
<p>blah blahp>
<{/if}>
and in the php file
newbb/viewtopic.php (I put it around 1/3rd of the way down):
if ( $xoopsUser ) {
if ( $xoopsUser->isAdmin($xoopsModule->mid()) ||
is_moderator($forum, $xoopsUser->getVar('uid')) ) {
$xoopsTpl->assign('moderator', true);
}
}