Simple Machines Community Forum

General Community => Scripting Help => Topic started by: MobileCS on February 12, 2025, 04:35:17 PM

Title: [PHP] Detect if on forum index or not
Post by: MobileCS on February 12, 2025, 04:35:17 PM
In PHP, how you you detect if you are on the main page (forum index)?

This is for SMF 2.1.4
Title: Re: [PHP] Detect if on forum index or not
Post by: Sesquipedalian on February 12, 2025, 05:47:06 PM
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']);
Title: Re: [PHP] Detect if on forum index or not
Post by: MobileCS on February 12, 2025, 09:12:21 PM
Thank you.