![]() |
Hide board Statistics from guests - Printable Version +- Xucce (https://xucce.com) +-- Forum: Forums (https://xucce.com/forum-1.html) +--- Forum: MyBB Development (https://xucce.com/forum-4.html) +---- Forum: Tutorials (https://xucce.com/forum-11.html) +---- Thread: Hide board Statistics from guests (/thread-31.html) |
Hide board Statistics from guests - Erik - 05-26-2025 Required - Template Conditionals Plugin → Download Here To hide the board statistics from guests or specific usergroups, follow the steps below. Step 1: Open the Template Go to: ACP → Templates & Style → Templates → CHOOSE YOUR THEME → Index Page Templates → index_boardstats Step 2: Wrap the Content in a Conditional At the very top of the template, add: Code: <if $mybb->user['usergroup'] != 1 then> At the very bottom of the template, add: Locked ContentGuests cannot view hidden content. Please log in. This condition will hide the statistics box from guests (usergroup 1). Tip: You can change the condition to target a different group or show stats only to specific users. For example: Code: </if> Would show the content only to Administrators (usergroup 4). |