Announcement

Collapse
No announcement yet.

Search results <ol>

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

    Search results <ol>

    Looked for the answer to this on previous posts and cannot find...

    I want to remove the numbered list from the search results page but I cannot find the corresponding HTML etc. Can anyone shed any light?

    Thanks in advance.

    PS: Another question - I am trying to place graphic buttons on Act_Order00.HTML instead of the standard submit buttons, but when I do - it returns me to a product page instead of continuing to Order01...

    Any clues?

    #2
    To answer your first question, open Act_ResultsTemplate.html in your site1 folder and comment out <Actinic:S_ITEM/>. so that it reads
    Code:
    <!-- <Actinic:S_ITEM/>. -->
    For the second question, can you post the code you are using to do this?
    Bill
    www.egyptianwonders.co.uk
    Text directoryWorldwide Actinic(TM) shops
    BC Ness Solutions Support services, custom software
    Registered Microsoft™ Partner (ISV)
    VoIP UK: 0131 208 0605
    Located: Alexandria, EGYPT

    Comment


      #3
      Hi Bill,

      Thanks for that...for the second point, I am (trying to use) using:

      <input type="image" src="checkoutgo.gif" name="ACTION" value="NETQUOTEVAR:NEXTBUTTON" alt="Proceed" />

      Rather than the system default:

      <input type=SUBMIT name=ACTION value="NETQUOTEVAR:NEXTBUTTON">

      Comment


        #4
        Try
        Code:
        <!-- <input type=SUBMIT name=ACTION value="NETQUOTEVAR:NEXTBUTTON"> -->
        <input type=IMAGE name=ACTION value="NETQUOTEVAR:NEXTBUTTON" src="checkoutgo.gif">
        - should work.
        Bill
        www.egyptianwonders.co.uk
        Text directoryWorldwide Actinic(TM) shops
        BC Ness Solutions Support services, custom software
        Registered Microsoft™ Partner (ISV)
        VoIP UK: 0131 208 0605
        Located: Alexandria, EGYPT

        Comment

        Working...
        X