Announcement

Collapse
No announcement yet.

update button against each cart item

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

    update button against each cart item

    Is there any simple way to put an update button against each cart item to make it more easy/obvious for customers to be able to change their order quantities?
    Richard
    www.worldofenvelopes.com

    #2
    Richard,

    This can be done by editing the cart template. You can copy the update button from Act_ShoppingCart.html just these two line
    <!-- <INPUT TYPE="SUBMIT" NAME="ACTION" VALUE="NETQUOTEVAR:UPDATEBUTTON"> -->
    <INPUT TYPE="IMAGE" NAME="ACTION_UPDATE" SRC="update.gif" ALT="NETQUOTEVAR:UPDATEBUTTON">
    Paste this into Act_ShoppingCartXML.html, look for NETQUOTEVAR:REMOVEBUTTON, you should see
    <TD ALIGN="CENTER" ROWSPAN="NETQUOTEVAR:REMOVEROWSPAN" BGCOLOR="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:REMOVEBUTTON</TD>
    Insert the copied code right after NETQUOTEVAR:REMOVEBUTTON so that it looks like this
    NETQUOTEDEL:REMOVE
    <Actinic:REMOVE TAG="RemoveButtonSpan">
    <TD ALIGN="CENTER" ROWSPAN="NETQUOTEVAR:REMOVEROWSPAN" BGCOLOR="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:REMOVEBUTTON
    <!-- <INPUT TYPE="SUBMIT" NAME="ACTION" VALUE="NETQUOTEVAR:UPDATEBUTTON"> -->
    <INPUT TYPE="IMAGE" NAME="ACTION_UPDATE" SRC="update.gif" ALT="NETQUOTEVAR:UPDATEBUTTON">
    </TD>
    </Actinic:REMOVE>
    NETQUOTEDEL:REMOVE
    This should give you a working update button right next to the remove one. The usual disclaimers apply so please make backup's of the templates.

    Kind regards,
    Bruce King
    SellerDeck

    Comment

    Working...
    X