Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 2009
    Posts
    41
    Plugin Contributions
    0

    red flag Changing URL on Home Page

    Hi I can't figure out where in my templates files can I change URL for the tab named Home Page...

    I found this thread: http://www.zen-cart.com/forum/showthread.php?t=60844
    it kind of talks about it, but it is not clear what file was edited in the end...

    Did anyone come across this problem before??
    Thanks.

  2. #2
    Join Date
    Feb 2008
    Location
    UK
    Posts
    43
    Plugin Contributions
    0

    Default Re: Changing URL on Home Page

    The file you need is templates/YOUR_TEMPLATE/common/tpl_header.php. First you need to add a link to your website home page as a list item:

    PHP Code:
    <div id="navMainWrapper">
    <div id="navMain">
        <ul class="back">
        <li><a href="mysiteroot">Home</a></li>
        <li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>
    <?php if ($_SESSION['customer_id']) { ?>
        <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF'''SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF?></a></li>
        <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT'''SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT?></a></li>
    Next, decide if you want to keep the link to he shop home page. If you don't, just delete this line:

    PHP Code:
    <li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>
    If you do want to keep it, you will need to go to includes/languages/YOUR_TEMPLATE/english/header.php and change this line to suit:

    PHP Code:
      define('HEADER_TITLE_CATALOG''Home'); 

 

 

Similar Threads

  1. Changing URL link of image with logo from Home Page
    By Sachin1008 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 28 Apr 2014, 02:24 PM
  2. url to catalog home page
    By Potterpoole in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 31 Mar 2009, 11:48 PM
  3. home page URL
    By w2e in forum General Questions
    Replies: 1
    Last Post: 16 Oct 2007, 04:40 AM
  4. home page url
    By Karole in forum General Questions
    Replies: 7
    Last Post: 3 Mar 2007, 04:10 PM

Posting Permissions

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