MyBB Community Forums

Full Version: [SOLVED] link on header to show not on index, but all else
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Since i have template conditionals installed. I am wondering if i can make a link in the header template show everywhere except on the index page.

Basically i have a bottom page link that auto scrolls to the bottom above the navigation bar. But because the navigation bar is in the header, i have to put the bottom link in the header. This works as  i want, but it shows on the index page. I want to make it so that it shows everywhere but the index page.

Im sure there is a way to do it via tempalte conditionals, im just not sure what the syntax would be

<if !index.php then>SHOW LINK HERE</if> or something like that 

but also wondering if there was a way around another method too.

EDIT:
I tried this but it did nothing
				<if $_SERVER['REQUEST_URI'] != "http://python-forum.io/index.php" then>
				<a href="#bottom">Bottom Page</a><br>
				</if>

It took me awhile to figure out that request uri returns the page and not the whole url
I should really learn PHP

I believe i got it with
                <if $_SERVER['REQUEST_URI'] != "/index.php" then>
                <a href="#bottom">Bottom Page</a><br>
                </if>
as it appears to work after that