arames Posted February 2, 2003 Share Posted February 2, 2003 Hi everybody, Do you know any contribution that lets your Cart Content look like this? :oops: :: Cart Content:: 0 Items Total: ?0.00 Weight: 0 kgs If you look at this nice site http://www.mainframes.co.uk/mf/catalog/default.php, then you can see it.... Since it is a great contribution..... I wish to add it to my poor old shop... But I can't find this contribution... Pleeeeeeease Help is needed :cry: Quote Link to comment Share on other sites More sharing options...
Guest Posted February 2, 2003 Share Posted February 2, 2003 This is the code that displays what you are after. <?php echo '[ ' . $cart->count_contents() . ($cart->count_contents() == "1" ? " Item" : " Items "); ?> <?php echo $currencies->format($cart->show_total()); ?> <?php echo $cart->show_weight() . ($cart->show_weight() == "1" ? " kg" : " kgs ")?> hope this helps cheers barry Quote Link to comment Share on other sites More sharing options...
arames Posted February 2, 2003 Author Share Posted February 2, 2003 thank you for your prompt reply... where do I add this code :oops: Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.