PDA

View Full Version : # items in cart message


russell_m89943
03-23-2009, 12:52 PM
Anyone know if there's a way to have ecart show the total number of items in the cart as html text? Right now I'm using:

shopping bag: <?php echo WA_eCart_DisplayMoney($bellaCart, $bellaCart->GrandTotal()); ?>

Which is giving me the total cost but not the item count.

Thanks, r.

Scott Noyes
03-23-2009, 01:14 PM
Cart Contents:Items - <?php echo WA_eCart_DisplayNumber($bellaCart, $bellaCart->TotalColumn("Quantity")); ?>- Total <?php echo WA_eCart_DisplayMoney($bellaCart, $bellaCart->GrandTotal()); ?>

russell_m89943
03-23-2009, 02:13 PM
People sure are helpful around these parts, worked like a charm. Thanks!!!