In PHP, how you you detect if you are on the main page (forum index)?
This is for SMF 2.1.4
You can use the following inside any PHP file that is part of SMF 2.1 (including mods and theme files):
$on_forum_home_page = ($_SERVER['REQUEST_URL'] === $GLOBALS['scripturl']);
Thank you.