PDA

View Full Version : Display Shipping Weight


xerodog
04-13-06, 11:13 PM
Is it possible to display the shipping weight for each item and/or the total shipping weight for all items in the cart on the OPAY page?

Red Flare
04-14-06, 01:55 PM
This was originally sent to the old mailing list by Ashish.


Screen OCST (and may be OPAY)
Item Basket Contents

add this in header
<td align="left" valign="middle" bgcolor="&mvt:colors:lhdr_bg;">
<mvt:item name="fonts" param="lhdr_font">
<b>Size</b>
</mvt:item>
</td>

and in mvt:foreach loop
--------------------------------
<td align="right" valign="middle" nowrap>
<mvt:item name="fonts" param="body_font">
&mvt:item:weight;</mvt:item>
</td>

xerodog
04-14-06, 08:27 PM
That works great. Thanks. How about displaying the description on the checkout pages? I have tried &mvt:item:descrip; and I tried &mvt:product:descrip; but neither works. So I tried &mvt:item:descrip; &mvt:product:descrip; together and then it displayed a description but it displayed the description for item 1 on all the items.