Great hack Logician! It works great!
However, I ran into a problem. I used this conditional:
Quote:
[[($bbuserinfo[usergroupid]==5 OR $bbuserinfo[usergroupid]==6 OR $bbuserinfo[usergroupid]==7)]] Display this HTML code if page visitor's a Super Mod OR a Mod OR an Admin [[/($bbuserinfo[usergroupid]==5 OR $bbuserinfo[usergroupid]==6 OR $bbuserinfo[usergroupid]==7)]]
|
Where "Display this HTML code if page visitor's a Super Mod OR a Mod OR an Admin" is replaced by $adminoptions.
I used this conditional in the showthread template and it works great. But I have one forum where this Thread Options menu bar should only be shown to people who mods that forum. So I tried to use Replacements Codes:
Quote:
[[($bbuserinfo[usergroupid]==5 OR $bbuserinfo[usergroupid]==6 OR $bbuserinfo[usergroupid]==7)]]$adminoptions[[/($bbuserinfo[usergroupid]==5 OR $bbuserinfo[usergroupid]==6 OR $bbuserinfo[usergroupid]==7)]]
|
to
Quote:
[[($bbuserinfo[userid]==1 OR $bbuserinfo[userid]==11 OR $bbuserinfo[userid]==68)]]$adminoptions[[/($bbuserinfo[userid]==1 OR $bbuserinfo[userid]==11 OR $bbuserinfo[userid]==68)]]
|
However, it's like this Replacement thingys don't respond to what I have put there. Do you know any other solution for this?