Announcement

Collapse
No announcement yet.

How can I specify search results images in columns?

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

    How can I specify search results images in columns?

    Hi - does version 7 allow you to specify the number of columns to display the search result images in?

    I would have thought that this would have been built in but I cannot find it.

    If not could it be added to the next release, and also the option to have the search result image link to the product page would be nice.

    I know Norman Rouxell had some code for version 5 & 6 to do this but not for version 7. Does anyone know if it is easy to apply Norman's v6 code to v7 scripts?
    Regards
    David

    #2
    Towards the bottom of this thread might help

    Four Columns in Search Results

    Comment


      #3
      My Multi Column Search Results patch is on http://www.drillpine.biz/actinicstuff/

      As to making th image clickable you could try this:-

      Edit Act_ResultsTemplate.html

      replace
      Code:
      		  <Actinic:XMLTEMPLATE NAME="ImageLine">
      		  	<IMG SRC="NETQUOTEVAR:THUMBNAIL" NETQUOTEVAR:THUMBNAILSIZE>
      		  </Actinic:XMLTEMPLATE>
      		  <Actinic:S_LINK/><B><Actinic:S_PNAME/></B></A> <Actinic:S_SNAME/> <Actinic:S_PRICE/> <BR>
      with
      Code:
      		  <Actinic:S_LINK/>
      		  <Actinic:XMLTEMPLATE NAME="ImageLine">
      		  	<IMG SRC="NETQUOTEVAR:THUMBNAIL" NETQUOTEVAR:THUMBNAILSIZE>
      		  </Actinic:XMLTEMPLATE>
      		  <B><Actinic:S_PNAME/></B></A> <Actinic:S_SNAME/> <Actinic:S_PRICE/> <BR>
      This is untested so back up first just in case.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        Thanks to both of you for the replies - I will give it a go.

        Regards
        David
        Regards
        David

        Comment

        Working...
        X