Quote Originally Posted by Sunabac View Post
well with the following change, I no longer get the "checkout" in the drop down menu (I was hoping the checkout would show if amount =>50.00) well I'll keep looking & trying...

<li class="submenu"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>
<?php if ($_SESSION['cart']->count_contents() >= 50.00) { ?>
<ul class="level2">
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>

I made a similar change in tpl_header.php but once again I don't get the "checkout" in the header at all. However the only checkout is in the middle so it seems o.k. This checkout icon appears when cart =>50.00
You're telling it to show up when someone has 50 or more ITEMS IN their cart, not the value of the cart. You need to figure out how to tell it to check for cart value. Check the coding of the mod, it should have the correct code somewhere in there?