MyBB Community Forums

Full Version: Hide Thread Content
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hides Thread Content until user replies to the thread.


Download:

Extend MyBB - Hide Thread Content
Thanks for this plugin, indeed very useful Smile
Another cool plugin, thx!
Thank you for your contribution Smile

Some suggestions:
  • $thread['firstpost'] should be available at both showthread_start and postbit so it is unnecessary to query for the thread data.
  • You should use the core is_member() function instead, something around if(!$mybb->user['uid'] || is_member($mybb->settings['hidetillreply_allowed_group'], $post)) { /*...*/ }.
  • You should implement some cache mechanism in postbit, remember this is hook is ran for every post so you are running one extra query per post on the posts table.
  • You forgot the archive sections.
  • Edit: You forgot the search results as well, this one would be a tricky one.

Keep it up 👍
Thank you. Will consider these in a stable release.
Your reputation rating has successfully been added for this user.