Announcement

Collapse
No announcement yet.

Remove delivery address change button, but not option

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

    Remove delivery address change button, but not option

    On page one of the checkout there is the option to tick a box to send to a separate address. If ticked page 3 asks for the delivery address, if not it doesn't.

    So far so good.

    On page 2 it gives the current value of this option along with a 'change' button. I don't want to confuse my users with this option - so how do I get rid of this?

    I have tried unclicking the 'design text/website cont/invoice/if you want to ship...' button, but this removes both references (ie page 1 and 2) which is no good.

    So how do I get rid of the change option on page 2 while actually keeping the option on page 1???
    John

    #2
    That's a good idea! I just tried it.

    Edit Act_Order01.html

    Find this:
    NETQUOTEDEL:INVOICEPROMPT015 NETQUOTEDEL:INVOICEPROMPT016
    <tr>
    <Actinic:LOCATION TYPE='SEPARATESHIP'>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:INVOICEPROMPT016</td>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG" align=LEFT valign=TOP>
    <input type="CHECKBOX" NETQUOTEVAR:INVOICESEPARATECHECKSTATUS name="SEPARATESHIP" value="YES">
    </td>
    </Actinic:LOCATION>
    </tr>

    Now comment out the html after the NETQUOTEDEL statement so the code now looks like this:
    NETQUOTEDEL:INVOICEPROMPT015 NETQUOTEDEL:INVOICEPROMPT016
    <!-- <tr>
    <Actinic:LOCATION TYPE='SEPARATESHIP'>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:INVOICEPROMPT016</td>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG" align=LEFT valign=TOP>
    <input type="CHECKBOX" NETQUOTEVAR:INVOICESEPARATECHECKSTATUS name="SEPARATESHIP" value="YES">
    </td>
    </Actinic:LOCATION>
    </tr> -->

    It seems to work after a few tests on my site. Be sure to leave the NETQUOTEDEL line alone.
    Bob Ladden

    Comment


      #3
      yes, that's great.

      now how do I get rid of this thing - "There are no addresses in your address book. [] Check here to add new address to your address book"

      and why is there an address book for delivery address not invoice address?
      John

      Comment


        #4
        Locate the text
        Code:
        <!-- Address Book -->NETQUOTEVAR:ADDRESSBOOK<!-- End of Address Book -->
        in Act_Order02.html and change it to
        Code:
        <!-- Address Book NETQUOTEVAR:ADDRESSBOOK End of Address Book -->

        Comment

        Working...
        X