Hi Anne,
Sorry to keep annoying you. I was hoping you could point me in the right direction. If I wanted to add text or an image before the shopping cart count in the header, what do I need to put where?
I've noticed this is already in the header.php file, but I'm guessing that would come up after the item count.
Code:
define('HEADER_TITLE_CART_ITEMS', 'item(s)');
And I thinking I need to put something the the tpl_header.php file on line 125 somewhere in this code:
Code:
<div class="header-cart">
<a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo $_SESSION['cart']->count_contents();?> - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a>
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<?php }?>
</div>
</div>
So basically I want to be able to place text/html before 0 - $0.00
Any help would be appreciated.
Shane
Bookmarks