Results 1 to 7 of 7
  1. #1
    Join Date
    Mar 2005
    Posts
    142
    Plugin Contributions
    0

    Default Replace Home URL with Website URL instead of Store

    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!

  2. #2
    Join Date
    Feb 2006
    Location
    Chicago
    Posts
    1,167
    Plugin Contributions
    0

    Default Re: Replace Home URL with Website URL instead of Store

    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>&nbsp;|&nbsp;

  3. #3
    Join Date
    Mar 2005
    Posts
    142
    Plugin Contributions
    0

    Default Re: Replace Home URL with Website URL instead of Store

    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!

  4. #4
    Join Date
    Mar 2005
    Posts
    142
    Plugin Contributions
    0

    Default Re: Replace Home URL with Website URL instead of Store

    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!

  5. #5
    Join Date
    Feb 2006
    Location
    Chicago
    Posts
    1,167
    Plugin Contributions
    0

    Default Re: Replace Home URL with Website URL instead of Store

    Quote Originally Posted by mlm2005
    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?
    Please let us know clearly

  6. #6
    Join Date
    Mar 2005
    Posts
    142
    Plugin Contributions
    0

    Default Re: Replace Home URL with Website URL instead of Store

    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>&nbsp;|&nbsp;

  7. #7
    Join Date
    Feb 2006
    Location
    Chicago
    Posts
    1,167
    Plugin Contributions
    0

    Default Re: Replace Home URL with Website URL instead of Store

    Quote Originally Posted by mlm2005
    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>&nbsp;|&nbsp;
    Try this:
    <td align="left" valign="top" width="33%" class="headerNavigation">
    <a href="http://www.mywebsite.com">Home</a>&nbsp;|&nbsp;

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •