I am a code novice.
I am trying to hide the New Thread button for certain usergroups. They can reply to an existing thread but not create new threads. I can control this with permissions, but I am tying to hide the button.
I found the code in ForumDisplay
Code:
<if condition="$show['newthreadlink']"><a href="newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]" rel="nofollow"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a><else /> </if></td>
I also found articles on how to use conditionals from
https://vborg.vbsupport.ru/showthread.php?t=98009
Code:
<if condition="is_member_of($bbuserinfo, 6)">
If in group 6, show this...
<else />
...or else, show this.
</if>
I am trying to integrate these two. Basically I only want the new thread button to be available for Admins. (its actually the new review button, I am modifying a GARS template.)
I am ok with basic if else principles, but these are nested and I am getting confused