Announcement

Collapse
No announcement yet.

Back Button on Extended Info Pages

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

    Back Button on Extended Info Pages

    Hi Actinic buddies.

    I'm having a little trouble finding the perfect solution for my back button on extended info pages.
    At present I'm using a layout that works by going back 1 page via browser history, unfortunately this doesn't have the desired effect when people link directly into extended info page from google, etc.
    What I want is a button that will link the extended info page to it's section list without using the browser history.

    Any smart ideas?

    P.S. I'm running Actinic Enterprise V10.4 and using a customized 'Includes Add to Cart Button' layout for extended info.

    #2
    As always, an URL will help as we can't tell if you're using a popup or whatever from what you've said.

    Generally Extended Info pages are within Sections so a link to the Section could be as simple as:
    Code:
    <a href="<actinic:variable name="SectionPageName" />">BACK</a>
    And here's the slightly more complex one borrowed from the Site Map:
    Code:
       <a href='<actinic:block if="%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20AND%0d%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e" ><actinic:variable name="SectionPageName" /></actinic:block><actinic:block if="%28%3cactinic%3avariable%20name%3d%22IsLoginPageSuppressed%22%20%2f%3e%20%3d%3d%20false%29%20OR%0d%28%3cactinic%3avariable%20name%3d%22UnregCustomersAreNotAllowed%22%20%2f%3e%20%3d%3d%20false%29" ><actinic:variable name="SectionURL" /></actinic:block>'>BACK</a>
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Will this work with duplicates which can be in different sections but have the same page name?

      Comment


        #4
        The Section Name and URL will be that of the page the extended info's parent product is on.

        If the Extended Info is being re-created with the same file-name for every Duplicate then code on that page will reflect the ultimate product (or Duplicate) it was generated for.

        Of course, try it and see may be best.
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment

        Working...
        X