Announcement

Collapse
No announcement yet.

Checkout Images

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

    Checkout Images

    Is there an optimum size for checkout images.... Small obviouslly

    Anybody got a site using them?

    #2
    And how do you switch them on?

    Comment


      #3
      Actinic will use whatever image you specify in the 'Thumbnail' field for the thumbnail in the shopping cart. If there is no entry in the 'Thumbnail' field then Actinic will use the default product image.

      To turn on images in the shopping cart, include the following code within 'Act_ShoppingCartXML.html' between <Actinic:XMLTEMPLATE NAME="ProductLine"> and its equivalent closing XML tag: </Actinic:XMLTEMPLATE>

      <Actinic:REMOVE TAG="THUMBNAIL">
      <IMG SRC="NETQUOTEVAR:THUMBNAIL" THUMBNAILSIZE>
      </Actinic:REMOVE>

      Comment


        #4
        I've tried that code and sure enough it puts in a 50pixel thumbnail, however its aboe the product reference, and creates an empty row the same height as the pic across the Description fields.

        I've tried putting that code under the PRODUCT REFERENCE, but the pic is still shown above... any thoughts?

        NETQUOTEDEL:REFERENCE
        <TD WIDTH=90><SPAN CLASS="actxsmall">NETQUOTEVAR:PRODREF</SPAN></TD>
        NETQUOTEDEL:REFERENCE
        <!-- GTS added Images code 3 lines -->
        <Actinic:REMOVE TAG="THUMBNAIL">
        <IMG SRC="NETQUOTEVAR:THUMBNAIL" THUMBNAILSIZE>
        </Actinic:REMOVE>

        Comment


          #5
          The obvious thing from the code you quote there is that you have not put the image within a <td>...</td> tag in order to include it into the table which lays out a product line in the shopping cart e.g.
          Code:
          <TABLE BORDER=0 WIDTH=100% CELLSPACING=0 CELLPADDING=0>
          	<TR>
          		NETQUOTEDEL:REFERENCE
          		<TD WIDTH=90><SPAN CLASS="actxsmall">NETQUOTEVAR:PRODREF</SPAN></TD>
          		NETQUOTEDEL:REFERENCE
          		<TD WIDTH=280>
          <!-- GTS added Images code 3 lines -->
          <Actinic:REMOVE TAG="THUMBNAIL">
          <IMG SRC="NETQUOTEVAR:THUMBNAIL" THUMBNAILSIZE>
          </Actinic:REMOVE>
          		<SPAN CLASS="actxsmall">NETQUOTEVAR:PRODUCTNAME
          		<Actinic:REMOVE TAG="DuplicateLinks">
          		<BR>NETQUOTEVAR:DUPLICATELINKCAPTION
          		<Actinic:XMLTEMPLATE NAME="DuplicateLinkLine">
          		<BR>NETQUOTEVAR:DUPLICATELINK
          		</Actinic:XMLTEMPLATE>
          		</Actinic:REMOVE>
          		</SPAN></TD>
          		<TD WIDTH=60  ALIGN=RIGHT><SPAN CLASS="actxsmall">NETQUOTEVAR:QUANTITY</SPAN></TD>
          	</TR>
          </TABLE>

          Comment

          Working...
          X