Announcement

Collapse
No announcement yet.

< Previous | Next > In Search Results ???

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

    < Previous | Next > In Search Results ???

    I just incorporated the NETQUOTEVAR:PREV_SECTION_NAME and NEXT_SECTION_NAME onto my product pages (which are setup as sections), see an example here - not 100% sure I like it yet but I'll give it a bit of time

    But wondered if something similar to a < Previous | Next > could also be easily set up to work with the search results Actinic produces, allowing visitors to move more easily from search page to page?

    Any ideas anyone?

    Cheers
    Graham

    #2
    Hi Graham,

    I'm afraid these variables do not work in the search results, so to achieve this, you would need to do a script change in "SearchScript.pl".
    Those variables mentioned were only intended to work in the primary templates or store pages.

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      Renaming the links

      Hi all,
      I have also used the NEXT_SECTION_NAME and PREV_SECTION_NAME in my primary template. However, I would love to be able to rename the actual section name to the words: "Next" and "Previous" as it is confusing to the eye. Is there any way to do this? The cose as you know it is:

      <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
      <td><a href="NETQUOTEVAR:PREV_SECTION_URL">
      NETQUOTEVAR:PREV_SECTION_NAME</a>
      </td>
      <td align="right">
      <a href="NETQUOTEVAR:NEXT_SECTION_URL">
      NETQUOTEVAR:NEXT_SECTION_NAME
      </a>
      </td>
      </tr>
      </table>

      Thanks.

      Comment


        #4
        Hi Fara,

        I would love to be able to rename the actual section name to the words: "Next" and "Previous"
        Just change your code to the following:

        <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
        <td><a href="NETQUOTEVAR:PREV_SECTION_URL">
        Previous</a>
        </td>
        <td align="right">
        <a href="NETQUOTEVAR:NEXT_SECTION_URL">
        Next
        </a>
        </td>
        </tr>
        </table>
        ********************
        Tracey
        SellerDeck

        Comment


          #5
          But.... When you reach the end of a section won't you will still see 'next' and the link will 'not found'??

          Duncan
          Last edited by Duncan Rounding; 12-Oct-2005, 10:44 AM. Reason: clarification

          Comment


            #6
            In that case you would have to create a new primary template for the last section to not include the 'next' link.
            ********************
            Tracey
            SellerDeck

            Comment

            Working...
            X