Page 1 of 1
removing login and account tab
Posted: Sat Nov 20, 2010 11:10 am
by dancok
holla every body, i was looking for my problem, but didn't find any solution. The idea is: how to remove login and account tab from header so in tab only shows home, basket and chekout. thank you.
Re: removing login and account tab
Posted: Sat Nov 20, 2010 11:50 am
by dancok
i find the solutions,

Re: removing login and account tab
Posted: Sat Nov 20, 2010 1:03 pm
by De[v]
For other people that might need help with this.
/catalog/view/theme/default/template/common/header.tpl
Find and Remove (using DW line 127-137(half line))
Code: Select all
<?php if (!$logged) { ?>
<a href="<?php echo str_replace('&', '&', $login); ?>" id="tab_login"><?php echo $text_login; ?></a>
<?php } else { ?>
<a href="<?php echo str_replace('&', '&', $logout); ?>" id="tab_logout"><?php echo $text_logout; ?></a>
<?php } ?>
<a href="<?php echo str_replace('&', '&', $account); ?>" id="tab_account"><?php echo $text_account; ?></a>