johnnyosc Posted December 29, 2002 Share Posted December 29, 2002 Does anyone know the code for making the shopping cart box on the right side to display the numbers of items in the cart with the total instead of listing all the items? Something similar to this http://www.abcshopper.com thanks, JOhnnyOSC Link to comment Share on other sites More sharing options...
psychedelik Posted December 29, 2002 Share Posted December 29, 2002 such feature is built-in osc and popularized by Linda (ajeh) by packaging it in one of her contributions here's the break down: # of items: <?php echo $cart->count_contents(); ?> $ total: <?php echo $currencies->format($cart->show_total()); ?> weight total: (usually in lbs) <?php echo $cart->show_weight(); ?> have fun osc'ing! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.