Here is how you could hide the shopping cart side bar when it is empty:
1. Open: app/design/frontend/default/<your template>/template/checkout/cart/sidebar.phtml
2. Go to line 32 Look for
1. Open: app/design/frontend/default/<your template>/template/checkout/cart/sidebar.phtml
2. Go to line 32 Look for
<div class="box base-mini mini-cart">3. Add these lines right before that opening div tag
<?php $_cartQty = $this->getSummaryCount() ?>4.Add this line to the bottom of the file
<?php if ($_cartQty >0): ?>
<?php endif ?>That is it your are all set, the shopping cart will only show if user adds items to their shopping cart.
No comments:
Post a Comment