Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Add another link in the header beside Home/Log in

Add another link in the header beside Home/Log in

Locked

Views: 1,273

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
29 Jul 2009, 11:53 PM
#1
ballyc27 avatar

ballyc27

New Zenner

Join Date:
Sep 2007
Posts:
65
Plugin Contributions:
0

Add another link in the header beside Home/Log in

Hi,

fairly general question... just not up on php enough to solve it and couldn't find it in the forum.
I want to provide a link from my store (https://www.theebooksale.com/zen-cart) to my homepage (https://www.theebooksale.com). Ideally, I would like it to exist beside the Home and Log in buttons/links in the header. How can I do this?

Thank-you,
Richie.

30 Jul 2009, 9:41 PM
#2
confused_aswell avatar

confused_aswell

Zen Follower

Join Date:
Apr 2008
Location:
UK
Posts:
315
Plugin Contributions:
1

Re: Add another link in the header beside Home/Log in

Hi

Look in your includes/templates/YOUR TEMPLATE/common folder and find the file tpl_header.php and find -

<li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>

it should be on about line 81

then add this directly after the end of the line

<li><a href="THE LINK TO YOUR SITE">TEXT TO HOME OF MAIN SITE</a></li>

That should work.

Phil