Thread: Header Links

Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2007
    Posts
    226
    Plugin Contributions
    0

    Default Header Links

    Hello,

    Just wondering if it is possible to modify the header links in admin ?:

    Admin Home | Online Catalog | Support Site | Version | Logoff

    For example, adding extra links, modifying the name of the links above etc.

    Thanks,
    Anthony

  2. #2
    Join Date
    Jan 2007
    Posts
    48
    Plugin Contributions
    0

    Default Re: Header Links

    The name of the links can be change in your language file in

    admin/includes/languages/english.php

    Code:
    define('HEADER_TITLE_TOP', 'Admin Home');
    define('HEADER_TITLE_SUPPORT_SITE', 'Support Site');
    define('HEADER_TITLE_ONLINE_CATALOG', 'Online Catalog');
    define('HEADER_TITLE_VERSION', 'Version');
    define('HEADER_TITLE_LOGOFF', 'Logoff');
    To add links, you need to modify the file

    admin/includes/header.php

    look for this code at the end of the file

    Code:
    <td class="headerBarContent" align="right"><?php echo '<a href="' . zen_href_link(FILENAME_DEFAULT, '', 'NONSSL') . '" class="headerLink">' . HEADER_TITLE_TOP . '</a>&nbsp;|&nbsp;<a href="' . zen_catalog_href_link() . '" class="headerLink" target="_blank">' . HEADER_TITLE_ONLINE_CATALOG . '</a>&nbsp;|&nbsp;<a href="http://www.zen-cart.com/" class="headerLink" target="_blank">' . HEADER_TITLE_SUPPORT_SITE . '</a>&nbsp;|&nbsp;<a href="' . zen_href_link(FILENAME_SERVER_INFO) . '" class="headerLink">' . HEADER_TITLE_VERSION . '</a>&nbsp;|&nbsp;<a href="' . zen_href_link(FILENAME_LOGOFF) . '" class="headerLink">' . HEADER_TITLE_LOGOFF . '</a>&nbsp;' Insert_here; ?></td>
    and insert something like this

    . '|&nbsp;<a href=http://www.Your_url.com" class="headerLink">text of the link</a>'




  3. #3
    Join Date
    Jan 2007
    Posts
    226
    Plugin Contributions
    0

    Default Re: Header Links

    Cheers for that.

    Worked perfectly.

    Thanks,
    Anthony.

 

 

Similar Threads

  1. Header links
    By zcadqliv in forum Templates, Stylesheets, Page Layout
    Replies: 12
    Last Post: 23 Feb 2011, 07:41 AM
  2. Separating the Header Links from Sidebox links in CSS
    By mommydesigns in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 24 May 2007, 02:42 PM
  3. Header Links?
    By bajanboost in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 31 Dec 2006, 09:44 AM
  4. Links in Header
    By personalisedpresent in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 13 Sep 2006, 06:03 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