Announcement

Collapse
No announcement yet.

Removing Save and Retrieve from cart

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

    Removing Save and Retrieve from cart

    Hi there

    Is it possible to remove the Save and Retrieve elements from the checkout of Actinic

    I've found the code in Act_ShoppingCart.html which displays them (Save section displayed below)

    Code:
    <TD align="center">
      <Actinic:REMOVE TAG="SaveButton">
    	<!-- <INPUT TYPE="SUBMIT" NAME="ACTION" VALUE="NETQUOTEVAR:SAVEBUTTON"> -->
    	<INPUT TYPE="IMAGE" NAME="ACTION_SAVE" SRC="save.gif" ALT="NETQUOTEVAR:SAVEBUTTON">
      </Actinic:REMOVE>
      <Actinic:REMOVE TAG="SaveButtonDisabled">
    	<!-- <INPUT TYPE="SUBMIT" NAME="ACTION" VALUE="NETQUOTEVAR:SAVEBUTTON" DISABLED> -->
    	<INPUT TYPE="IMAGE" NAME="ACTION_SAVE" SRC="save.gif" ALT="NETQUOTEVAR:SAVEBUTTON" DISABLED>
      </Actinic:REMOVE>
    </TD>
    but having either commented all this out or even removing it doesn't seem to help.

    Could anyone shed any light?

    Cheers

    Jos
    Thanks

    Jos Medinger

    Tel : 01978 843 962
    www.internetology.co.uk
    Actinic / E-Commerce Hosting, Design & SEO
    ______________________________________

    #2
    Hi there

    I've just gone into "Act_ShoppingCart.html" and remove the following code

    HTML Code:
    	<Actinic:REMOVE TAG="ShoppingList">
    		<TD align="center">
    			<Actinic:REMOVE TAG="SaveButton">
    				<!-- <INPUT TYPE="SUBMIT" NAME="ACTION" VALUE="NETQUOTEVAR:SAVEBUTTON"> -->
    				<INPUT TYPE="IMAGE" NAME="ACTION_SAVE" SRC="save.gif" ALT="NETQUOTEVAR:SAVEBUTTON">
    			</Actinic:REMOVE>
    			<Actinic:REMOVE TAG="SaveButtonDisabled">
    				<!-- <INPUT TYPE="SUBMIT" NAME="ACTION" VALUE="NETQUOTEVAR:SAVEBUTTON" DISABLED> -->
    				<INPUT TYPE="IMAGE" NAME="ACTION_SAVE" SRC="save.gif" ALT="NETQUOTEVAR:SAVEBUTTON" DISABLED>
    			</Actinic:REMOVE>
    		</TD><TD align="center">
    			<Actinic:REMOVE TAG="RestoreButton">
    				<!-- <INPUT TYPE="SUBMIT" NAME="ACTION" VALUE="NETQUOTEVAR:RESTOREBUTTON"> -->
    				<INPUT TYPE="IMAGE" NAME="ACTION_GET" SRC="retrieve.gif" ALT="NETQUOTEVAR:RESTOREBUTTON">
    			</Actinic:REMOVE>
    			<Actinic:REMOVE TAG="RestoreButtonDisabled">
    				<!-- <INPUT TYPE="SUBMIT" NAME="ACTION" VALUE="NETQUOTEVAR:RESTOREBUTTON" DISABLED> -->
    				<INPUT TYPE="IMAGE" NAME="ACTION_GET" SRC="retrieve.gif" ALT="NETQUOTEVAR:RESTOREBUTTON" DISABLED>
    			</Actinic:REMOVE>
    		</TD>
    	</Actinic:REMOVE> <!-- End Remove -->
    This removes the save and retrieve button for me. See my test site

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      This reply saved me a real headache today, thanks v much

      Comment

      Working...
      X