Announcement

Collapse
No announcement yet.

Page Titles

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Page Titles

    I can't see how to set the page title for

    Contact page
    Terms page
    Sitemap
    Products page

    I have read other threads on the forum about this problem but couldn't find any answers.

    If go to design view then code and change the title it changes it on all other pages as well.

    Surley there is a simple way of giving these pages unique titles, at the moment they all have the same title.

    www.retro-sweets-shop.co.uk/acatalog/info.html
    Retro Sweets Shop

    #2
    James,
    try something like

    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Contact%20Us%22" >
        <title>Contact Us Title</title>
    </actinic:block>
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Site%20Map%22" >
        <title>SiteMap Title</title>
    </actinic:block>
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Terms%20And%20Conditions%22" >
        <title>Terms and conditions title</title>
    </actinic:block>
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Contact%20Us%22%20%7c%7c%20%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Site%20Map%22%20%7c%7c%20%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Terms%20And%20Conditions%22" >
           <title><actinic:variable name="PageTitle" /></title>
       </actinic:block>
    in place of the normal
    Code:
    <title><actinic:variable name="PageTitle" /></title>
    Fergus Weir - teclan ltd
    Ecommerce Digital Marketing

    SellerDeck Responsive Web Design

    SellerDeck Hosting
    SellerDeck Digital Marketing

    Comment


      #3
      Wow that works brilliant, thank you very much!!!!!!!!
      Retro Sweets Shop

      Comment

      Working...
      X