Hi All,
I am trying to replace the URL for Home to that of my main website. I tried modifying the tpl_header.php and when I replaced the line of code with my website URL my entire store disappeared. Can someone tell me how to do this?
Thanks!
Hi All,
I am trying to replace the URL for Home to that of my main website. I tried modifying the tpl_header.php and when I replaced the line of code with my website URL my entire store disappeared. Can someone tell me how to do this?
Thanks!
In tpl_header.php in \includes\templates\template_default\common\tpl_header.php
Look for this code and change accordingly
<td align="left" valign="top" width="33%" class="headerNavigation">
<a href="<?php echo zen_href_link(FILENAME_DEFAULT, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a> |
Hello,
My store disappears when I do that (all except a narrow line at the top.) Can you tell me what part has to be changed?
Also, if I have my website link on each page will this mess up my SSL pages?
Thanks!
Hello,
I would still like to have my Home button direct to the home page of my website. The changes above made my store disappear. What is the exact syntax that I replace with the URL?
Thanks!
What did you try so far?Originally Posted by mlm2005
Please let us know clearly
I found the following syntax and replaced with my website URL as below but my store disappeared (all but a small narrow strip at the top.)
Thanks
<td align="left" valign="top" width="33%" class="headerNavigation">
<a href="HTTP://WWW.MYWEBSITE.COM"><?php echo HEADER_TITLE_CATALOG; ?></a> |
Try this:Originally Posted by mlm2005
<td align="left" valign="top" width="33%" class="headerNavigation">
<a href="http://www.mywebsite.com">Home</a> |
Bookmarks