Posts: 1,004
Threads: 230
Joined: Aug 2009
Reputation:
7
2019-11-11, 04:10 PM
How can I add a header notification that will appear to admins & super mods only? It is actually the notification from Awards that says that there are pending award requests to review. There was a bit in the original plugin but it actually showed to all members so I removed it from the header template until I can figure out how to show it to admin/mods only...
I would appreciate any help with this!
{$ougc_awards_requests}
MyBB 1.8.38 (x3)
bladetalk.org, alpharomeo15.org & pazrt.com
Posts: 1,004
Threads: 230
Joined: Aug 2009
Reputation:
7
2019-11-18, 06:26 PM
(This post was last modified: 2019-11-18, 06:27 PM by RocketFoot. Edited 1 time in total.)
(2019-11-18, 04:00 AM)Michael2014 Wrote: You can use a template conditional, <if $GLOBALS['mybb']->user['usergroup'] == 4 then>{$ougc_awards_requests}</if>
(2019-11-18, 02:58 PM)SvePu Wrote: You could try this:
Open /inc/plugins/ougc_awards.php to edit....
Search for (#2087):
if($pending < 1)
{
return;
}
Replace this part with:
if($pending < 1 || !$ismod)
{
return;
}
Save it 'n try
Thanks guys! I used SvePu's solution and it worked perfectly! Michale2014's looks good to but it's working now and I don't want to chance it to test! LOL!! Thanks again guys!!
MyBB 1.8.38 (x3)
bladetalk.org, alpharomeo15.org & pazrt.com