MyBB Community Forums

Full Version: Hide new thread or new reply button
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,

I have searching for a sollution the hide the reply button, new reply and the new thread button for members that have not the permission to use this in forums.

Here the sollutions.

This will hide the New Thread button automatically when a user doesn't have permission to create a new thread in a forum.

forumdisplay_newthread:
<if $fpermissions['canpostthreads'] == 1 then>
<a href="newthread.php?fid={$fid}"><img src="{$theme['imglangdir']}/newthread.gif" alt="{$lang->post_thread}" title="{$lang->post_thread}" /></a>
</if>


This will hide the New Reply button automatically when a user doesn't have permission to post a new reply in a thread.

showthread_newreply:
<if $forumpermissions['canpostreplys'] == 1 then>
<a href="newreply.php?tid={$tid}"><img src="{$theme['imglangdir']}/newreply.gif" alt="{$lang->post_reply_img}" title="{$lang->post_reply_img}" /></a>&nbsp;
</if>

The same conditional if we want to hide the Reply button in postbit:

postbit_quote template:
<if $forumpermissions['canpostreplys'] == 1 then>
<a href="newreply.php?tid={$tid}&amp;pid={$post['pid']}"><img src="{$theme['imglangdir']}/postbit_quote.gif" alt="{$lang->postbit_quote}" title="{$lang->postbit_quote}" /></a>
</if>

I don't know if this is already on the Mybb forum, but I want to share this with people that want the same to hide this..

Greatings.
Sorry for slightly grave digging, but I was linked here. This was just what I needed.
Good share thanks
In response to my previous post - this is just what I need, but my New Reply and New Thread icons disappeared completely, even to admins with full permissions

Resolution:

if anyone else encounters this, red this: http://community.mybb.com/thread-146715-...pid1042171