Announcement

Collapse
No announcement yet.

store page

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

    store page

    I am confused (again) the store page - found easily via the breadcrumb trail is only found that way - why is there no link visible for it?

    It seems to be a very important section, it has all products linked from it but is invisible to shoppers unless they back track through from a product:

    https://www.harrisontelescopes.co.uk...log/index.html
    https://www.harrisontelescopes.co.uk/

    Ed Harrison - Menmuir Scotland

    #2
    Check in your 'Online Catalogue' Catalog Details that the page name is index.html

    Open the Mega Menu Layout (Design, library, layouts or click in the design tree.

    At the top look for:

    Code:
    <div id="mega-menu" class="menuFlex">
      <ul>
    Add the following:
    Code:
    <li><a href="<actinic:variable name="CatalogURL" />">Store Top</a></li>
    So it looks like this:
    Code:
    <div id="mega-menu" class="menuFlex">
      <ul>
      <li><a href="<actinic:variable name="CatalogURL" />">Store Top</a></li>
    Apply, OK and out. Upload ad test. You may need to reduce the number of sections showing inthe mega menu to compensate for this extra one (settings, site options, mega menu, How many sections etc...)

    If the Online Catalogue Page Name is home.html or some other thing or if index is not connecting try:
    Code:
    <li><a href="<actinic:variable name="CatalogURL" />home.html">Store Top</a></li>
    
    OR
    
    <li><a href="<actinic:variable name="CatalogURL" />index.html">Store Top</a></li>
    
    As appropriate
    Jonathan Chappell
    Website Designer
    SellerDeck Website Designer
    Actinic to SellerDeck upgrades
    Graphicz Limited - www.graphicz.co.uk

    Comment

    Working...
    X