I'm using Zen Cart 1.3.8a, and I was wondering how to change the link on the Zen Cert header to point to a different page (my home page).
Any help would be appreciated.
I'm using Zen Cart 1.3.8a, and I was wondering how to change the link on the Zen Cert header to point to a different page (my home page).
Any help would be appreciated.
By default the logo DOES point to your "Home" page. If you are wanting to change that to point somewhere else, then look in "includes>templates>template_default(or you custom template)>common>tpl_header.php around line 71. Also you might want to check out the tutorial for instructions on how to add an internal or external link.
Hope this helps.
Last edited by Get Em Fast; 18 Mar 2010 at 05:45 AM.
Teach them to shop and they will shop today;
Teach them to Zen and they will OWN a shop tomorrow!
Thanks but it didn't work. I am using Zen Cart in addition toJoomla! and am trying to "point" back to my Joomla! main page. I followed your instructions and was faced with this line:
[FONT="Lucida Console"]<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>[/FONT]
Apparently I need to find the "defines" and change the [FONT="Lucida Console"]HTTP_SERVER.DIR_WS_CATALOG[/FONT]
Any ideas?
You need to REPLACE this:
with this (using your own link URL, of course):Code:<li><?php echo '<?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
That should do it.Code:<li><a href="http://your_external_link.com">Your Link Text</a></li>
Teach them to shop and they will shop today;
Teach them to Zen and they will OWN a shop tomorrow!