Hi Clive,
Create a new variable called CustomHomePageTitle (Design>Library>Variables)
(I did this by right clicking on the 'General' Group and selected 'New variable'
Name/Description/Prompt = CustomHomePageTitle
Place of Setting = Site
Panel Name: Properties
Type = Text
Allow Empty Value = Ticked.
Click ok to exit design library.
In design view, find:
<title><actinic:variable name="PageTitle" /></title>
and change to:
This will show the text shown in the CustomHomePageTitle if the store front is shown otherwise it will show the default..
Now go to Settings>Site Options>Properties>General>CustomHomePageTitle and type in your preferred page title.
Enjoy.
Create a new variable called CustomHomePageTitle (Design>Library>Variables)
(I did this by right clicking on the 'General' Group and selected 'New variable'
Name/Description/Prompt = CustomHomePageTitle
Place of Setting = Site
Panel Name: Properties
Type = Text
Allow Empty Value = Ticked.
Click ok to exit design library.
In design view, find:
<title><actinic:variable name="PageTitle" /></title>
and change to:
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22IsStoreFrontPage%22%20%2f%3e%20%20%3d%3d%20true"> <title><actinic:variable name="CustomHomePageTitle" /></title> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22IsStoreFrontPage%22%20%2f%3e%20%20%3d%3d%20false" > <title><actinic:variable name="PageTitle" /></title> </actinic:block>
Now go to Settings>Site Options>Properties>General>CustomHomePageTitle and type in your preferred page title.
Enjoy.
Comment