Announcement

Collapse
No announcement yet.

How can I optimise my page titles for search engines?

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

    How can I optimise my page titles for search engines?

    By default, SellerDeck will automatically create a page title for your section pages which is the company name followed by the section name. You can overwrite this by enter a value in the 'Page Title' field within the 'Page Settings' tab of a section. It is, however, possible to edit the automatically generated page titles for all your sections.

    To do this, you need to locate the <title></title> field within the overall page layout of your section pages. This will contain a variable called PageTitle.

    Replace the PageTitle variable with the following code:

    HTML Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%27Section%27"><actinic:block if="%3cactinic%3avariable%20name%3d%22SectionLevel%22%20%2f%3e%20%3e%200"><actinic:variable name="SectionName" />, <actinic:variable name="CompanyName" /></actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22SectionLevel%22%20%2f%3e%20%3d%3d%200"><actinic:variable name="CompanyName" /></actinic:block></actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%27Brochure%27"><actinic:variable name="BrochureName" />, <actinic:variable name="CompanyName" /></actinic:block><actinic:block if="%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%27Section%27%29%20AND%20%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%27Brochure%27%29" ><actinic:variable name="PageType" />, <actinic:variable name="CompanyName" /></actinic:block>
    All the conditions (green 'block' tags) are there to show different titles on different types of pages.
Working...
X