MyBB Community Forums

Full Version: Disable search for guests
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do you disable guests from using the search feature on your forum?

Thanks.
add this
if($mybb->user['uid'] == 0 || $mybb->usergroup['canusercp'] == 0)
{
	error_no_permission();
}

To search.php

At the top.
Can search forums? setting is available at edit user group in MyBB 1.6.10

Users & Groups --> Groups --> click on a group to edit --> forums and posts (tab) --> Viewing Options
Can view board?
Can view threads?
Can search forums?
Can view user profiles?
Can download attachments?
(2013-05-23, 01:56 AM)SpiritRocks Wrote: [ -> ]add this
if($mybb->user['uid'] == 0 || $mybb->usergroup['canusercp'] == 0)
{
	error_no_permission();
}

To search.php

At the top.

Thank you for your input. Smile

(2013-05-23, 02:34 AM).m. Wrote: [ -> ]Can search forums? setting is available at edit user group in MyBB 1.6.10

Users & Groups --> Groups --> click on a group to edit --> forums and posts (tab) --> Viewing Options
Can view board?
Can view threads?
Can search forums?
Can view user profiles?
Can download attachments?

Thank you kind sir, this method worked perfectly. Smile