Hi,
I'm inching closer towards a complete cart! Many thanks to the answers from the people on this board.
I have question, but due to my complete lack of php, I can't solve this on my own. I would like to keep the home, shopping cart, checkout, my account, etc. links always displaying. If a user isn't logged in, they would be directed to the login page when clicking on the appropiate links.
I found a way to keep all of the links displaying except my account by changing this code in tpl_header.php:
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<div class="navLeft"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>">Items in Cart: <?php echo ($_SESSION['cart']->count_contents()); ?></div>
<div class="navLeft"><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></div>
<div class="navLeft"><a href="/index.php?main_page=contact_us">Contact Us</a></div>
<?php }?>
to this:
<?php if ($_SESSION['cart']->count_contents() == 0) { ?>
<div class="navLeft"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>">Items in Cart: <?php echo ($_SESSION['cart']->count_contents()); ?></div>
<div class="navLeft"><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></div>
<div class="navLeft"><a href="/index.php?main_page=contact_us">Contact Us</a></div>
<?php }?>
This works, except 'my account' is no longer displayed and it throws the balance of links off (I have two columns with three links each).
I'm a designer first and web guy second, so this is nagging at me!



