I'd like to stop the "Home" from appearing in for the home page, but keep the page title in the for all other pages. e.g.:
Home page
--------------
My Great Company
Contact Us
--------------
My Great Company - Contact Us
Is this possible, using some kind of "if" statement?
Can I hide "Home" in <title> ?
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: Can I hide "Home" in <title> ?
{if $page_alias == 'home'}
{sitename}
{else}
{sitename} - {title}
{/if}
{sitename}
{else}
{sitename} - {title}
{/if}
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: Can I hide "Home" in <title> ?
Thank you for the swift reply, works perfectly 
