Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / how to create a new footer?

how to create a new footer?

Locked

Views: 1,147

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
12 Jun 2006, 1:58 AM
#1
lina0962 avatar

lina0962

Zen Follower

Join Date:
Jun 2006
Posts:
403
Plugin Contributions:
0

how to create a new footer?

I want to put the text of "Home :: About Us :: Open to Trade :: Q& A :: Contact Us :: My Account :: Site Map :: Privacy Policy " onto the red bar, which now only shows "Home".

How to do it?

Thank you!

lina

12 Jun 2006, 2:05 AM
#2
merlinpa1969 avatar

merlinpa1969

Totally Zenned

Join Date:
Mar 2004
Posts:
13,031
Plugin Contributions:
4

Re: how to create a new footer?

copy the tpl_footer.php from includes/templates/template_default/common
save it to

includes/templates/custom/common

and add your links
you will see where the | home | is located

12 Jun 2006, 2:24 AM
#3
lina0962 avatar

lina0962

Zen Follower

Join Date:
Jun 2006
Posts:
403
Plugin Contributions:
0

Re: how to create a new footer?

sorry....

I follow your tip and check tpl_footer.php file but I didn't find the "HOME" and still don't know how to do it?

Could you please tell me step by step? Thanks!

lina

12 Jun 2006, 2:30 AM
#4
merlinpa1969 avatar

merlinpa1969

Totally Zenned

Join Date:
Mar 2004
Posts:
13,031
Plugin Contributions:
4

Re: how to create a new footer?

find

<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>

make it look like

<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a> |&nbsp<a href="YOUR LINK HERE">Link Text Here</a></li>

Repeat the ```
 |&nbsp<a href="YOUR LINK HERE">Link Text Here</a>


remember to save in your includes/templates/custom/common    folder when done