Is there a way to check if i am in the home page in the template file?
I am trying to
<% if Home %>
do something
<%end_if%>
This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
Is there a way to check if i am in the home page in the template file?
I am trying to
<% if Home %>
do something
<%end_if%>
<% if URLSegment = home %>
do stuff
<% end_if %>
should do it.
Hi,
Thanks so much for your help it works :)
One last qn,
How do i get the url link for Home, and the title of the home link?
Thanks
<% control Page(home) %>$Link is the link, $Title or $MenuTitle is the title<% end_control %>