Announcement

Collapse
No announcement yet.

Missing Links in Shop Section

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

    Missing Links in Shop Section

    We have three pages ('FAQs', 'Downloads' & 'Contact Us') that exist in the top level of the Content Tree in Actinic. These appear as links at the top of each page when viewing the site/home page. However, as soon as you click into the Shop section of the site these links disappear and are replaced by the shop specific links ('View Basket' & 'Checkout Now').

    How can I get the 3 site specific links to also display when in the Shop section while also retaining the Shop specific links?

    Please advise.
    Dave.

    #2
    you could always hard code the links.

    while viewing your shop online, view the source of your page, and copy the appropriate parts.

    paste into the appropriate templates.

    make sure you keep a backup of your files, in case you fugger it up.

    Comment


      #3
      If you look in the layout code of the overall layout for your catalog pages you should see the following bits of code for the navigation...
      <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Catalog%22" >
      <actinic:variable name="BrochureNavBar" value="Brochure Nav Bar Text Link List" />
      </actinic:block>
      <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Brochure%22">
      <actinic:variable name="NavigationBar" value="Horizontal Nav Bar Text Links" />
      </actinic:block>
      or code quite similar, depending on the layout you are using...

      Delete the 'block if' around 'Brochure Nav Bar Text Link List' or equivelent, and click on 'apply'. The 'block if' restricts display if it is not a 'Brochure' page.

      You will notice that this produces 2 'Home' links on the navigation, you can go iinto either layout and comment out the 'Home_Text_Link' bit by putting it within <!-- and -->

      Kind regards,
      Bruce King
      SellerDeck

      Comment

      Working...
      X