Zen Follower
- Join Date:
- Jan 2011
- Posts:
- 367
- Plugin Contributions:
- 0
how to remove logo hyperlink?
I have 1.3.9h and i would like to remove the logo hyperlink.
https://www.airtightvideo.com/shopping_cart
I am enclosing the beginning part of my tpl_header.php if that helps:
- 'Bask' Template designed by zen-cart-power.net
- @copyright Copyright 2011 zen-cart-power.net - 'Bask' template
*/
?>
<!--bof-header ezpage links-->
<?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
<?php } ?>
<!--eof-header ezpage links-->
</div>
<!--login section-->
<div id="login_logout_section" class="float-right" width: 300>
<ul class="list-style-none inline-list">
<?php if ($_SESSION['customer_id']) { ?>
<li>
<?php echo HEADER_WELCOME; ?> <a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo ($_SESSION['customer_first_name'].' '.$_SESSION['customer_last_name']);?></a>!
</li>
<li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
<?php
} else {
if (STORE_STATUS == '0') {
?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
<li><?php echo HEADER_OR; ?></li>
<li><a href="<?php echo zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_REGISTER; ?></a></li>
<li><!-- (c) 2005, 2011. Authorize.Net is a registered trademark of CyberSource Corporation --> <div class="AuthorizeNetSeal"> <script type="text/javascript" language="javascript">var ANS_customer_id="0036e7ff-0a4e-4806-9f39-0049e960ce30";</script> <script type="text/javascript" language="javascript" src="//verify.authorize.net/anetseal/seal.js" ></script> <a href="http://www.authorize.net/" id="AuthorizeNetText" target="_blank">Accept Credit Cards</a></li>
<?php } } ?>
</ul>
</div>
<!--/login section-->
I would like to remove the hyperlink, i have tried to break the logo up into 3 parts to have seperate hyperlinks for each but have had no luck doing that.
thanks