RE: Shopping cart
Ajeh <[email protected]> 12 Sep 2003 04:13:07 -0000
| Newsgroups | gmane.comp.web.oscommerce.general |
|---|---|
| Message-ID | <85590321a6813b873457cfc835aa67aa@osCommerce-Forums> |
This message was sent from: General Support
http://forums.oscommerce.com/viewtopic.php?p=228249#228249
----------------------------------------------------------------
This is what I am using to do that:
[code]// WebMakers.com Added: Only show shopping cart when there is something in it.
if ($cart->count_contents() >= 1) {
require(DIR_WS_BOXES . 'shopping_cart.php');
}
[/code]