MyBB Community Forums

Full Version: Statistics on index page collapsed by default
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want that the statistics on the index page are collapsed by default.

I thougt I could check if the cookie "collaped" exists and if not i could create it. So I have something like:
if (!$_COOKIE['collapsed'])
{
setcookie("collapsed", "boardstats", "0", $mybb->settings['cookiepath'], $mybb->settings['cookiedomain'], "");
}
But it's not working...Where do I have to insert this code?
Simply open the template and change boardstats_e to boardstats_c.
Thanks! Big Grin