Announcement

Collapse
No announcement yet.

Ref text missing in cart and checkout

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

    Ref text missing in cart and checkout

    Hello

    When I add products to my cart, the confirm screen works fine showing the full product reference, but when I then view the cart or the checkout, only the numbers show of the ref.

    Belwo is part of my code from Act_ShoppingCartXML. Is there any thing that seems to be missing which results in the "Ref." not showing

    Thanks
    Steven

    <TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0>
    <TR>
    NETQUOTEDEL:REFERENCE

    <TD WIDTH=90 bgcolor="#FFFFCC"><SPAN CLASS="actxxsmall">NETQUOTEVAR:PRODREF</SPAN></TD>
    NETQUOTEDEL:REFERENCE

    <TD WIDTH=280 bgcolor="#FFFFCC"><SPAN CLASS="actxxsmall">NETQUOTEVAR:PRODUCTNAME</SPAN></TD>

    <TD WIDTH=60 ALIGN=RIGHT bgcolor="#FFFFCC"><SPAN CLASS="actxxsmall">NETQUOTEVAR:QUANTITY</SPAN></TD>
    </TR>
    </TABLE>

    #2
    Your code looks fine.

    The 'Ref' part is only added into the store pages - it is not considered to be part of the product reference.

    You could just change

    <TD WIDTH=90 bgcolor="#FFFFCC"><SPAN CLASS="actxxsmall">NETQUOTEVAR:PRODREF</SPAN></TD>

    to read

    <TD WIDTH=90 bgcolor="#FFFFCC"><SPAN CLASS="actxxsmall">Ref: NETQUOTEVAR:PRODREF</SPAN></TD>

    Comment

    Working...
    X