Results 1 to 7 of 7
  1. #1
    Join Date
    Sep 2009
    Posts
    10
    Plugin Contributions
    0

    Default How to change the desert noon logo and header to my own shop's name?

    Hi,
    I am using the Desert Noon's templete for my web store. May I know how do I change teh desert noon logo and header?

    Thanks

  2. #2
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: How to change the desert noon logo and header to my own shop's name?

    Quote Originally Posted by luckystar View Post
    Hi,
    I am using the Desert Noon's templete for my web store. May I know how do I change teh desert noon logo and header?

    Thanks
    This article should help

  3. #3
    Join Date
    Sep 2009
    Posts
    10
    Plugin Contributions
    0

    Default Re: How to change the desert noon logo and header to my own shop's name?

    Hi,
    Thanks for your info... it looks very complicated to me Had spend few hours trying already but nothing was done.
    Hope I can get it fix soon... I would also like to check how to I link my web to the main page?
    www.mybrainykidz.com/EStore/
    to www.mybrainykidz.com ?

    So that when I give customer my website I will only need to give:
    www.mybrainykidz.com


    Thanks in advance!

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: How to change the desert noon logo and header to my own shop's name?

    Quote Originally Posted by luckystar View Post
    Hi,
    I am using the Desert Noon's templete for my web store. May I know how do I change teh desert noon logo and header?

    Thanks
    Quote Originally Posted by luckystar View Post
    Hi,
    Thanks for your info... it looks very complicated to me Had spend few hours trying already but nothing was done.
    Hope I can get it fix soon... I would also like to check how to I link my web to the main page?
    www.mybrainykidz.com/EStore/
    to www.mybrainykidz.com ?

    So that when I give customer my website I will only need to give:
    www.mybrainykidz.com


    Thanks in advance!
    First: create your new logo image and save it as logo.gif upload this image to includes/templates/desert_noon/images.


    Second:
    open includes/templates/desert_noon/common/tpl_header.php

    find the following line of code: (around line 77)
    PHP Code:
        <li<?php echo (($this_is_home_page) ? ' class="current">' '>');?><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo '<span>' HEADER_TITLE_CATALOG '</span>'?></a></li>
    immediately above this line add the following:
    PHP Code:
    <li><?php echo '<a href="http://www.mybrainykidz.com/">'?><?php echo 'Main Web Site'?></a></li>
    Save the edited file and upload to your server.

  5. #5
    Join Date
    Sep 2009
    Posts
    10
    Plugin Contributions
    0

    Default Re: How to change the desert noon logo and header to my own shop's name?

    Hi hi,

    I had added the following but it still didn't link to the main page.
    The instructions given by you is so clear n yet I still can't get it fix

    <?php
    /**
    * Common Template - tpl_header.php
    *
    * this file can be copied to /templates/your_template_dir/pagename<br />
    * example: to override the privacy page<br />
    * make a directory /templates/my_template/privacy<br />
    * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
    * to override the global settings and turn off the footer un-comment the following line:<br />
    * <br />
    * $flag_disable_header = true;<br />
    *
    * @package templateSystem
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: tpl_header.php 4813 2006-10-23 02:13:53Z drbyte $
    */
    ?>

    <?php
    // Display all header alerts via messageStack:
    if ($messageStack->size('header') > 0) {
    echo $messageStack->output('header');
    }
    if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
    echo htmlspecialchars(urldecode($_GET['error_message']));
    }
    if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
    echo htmlspecialchars($_GET['info_message']);
    } else {

    }
    ?>


    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>

    <div id="headerWrapper">
    <!--bof-branding display-->
    <div id="logoWrapper">
    <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
    <div class="date"><?php echo strftime(DATE_FORMAT_LONG);?></div>
    <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, HEADER_LOGO_WIDTH, HEADER_LOGO_HEIGHT) . '</a>'; ?></div>
    <?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
    <div id="taglineWrapper">
    <?php
    if (HEADER_SALES_TEXT != '') {
    ?>
    <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
    <?php
    }
    ?>
    <?php
    if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
    <?php
    }
    }
    ?>

    </div>
    <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
    </div>
    <!--<br class="clearBoth" />-->
    <!--eof-branding display-->

    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
    <li><?php echo '<a href="http://www.mybrainykidz.com/">'; ?><?php echo 'Main Web Site'; ?></a></li>
    <ul class="back">
    <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>
    <?php
    } else {
    if (STORE_STATUS == '0') {
    ?>
    <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
    <?php } } ?>
    </ul>
    <ul class="forward">
    <li class="contact"><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'SSL'); ?>"><?php echo BOX_INFORMATION_CONTACT; ?></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    <?php }?>
    <li class="viewCart"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
    </ul>

    </div>
    <!--<div id="navMainSearch"><?php // require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>-->
    <br class="clearBoth" />
    </div>
    <!--eof-navigation display-->


    <!--eof-header logo and navigation display-->

    <!--bof-optional categories tabs navigation display-->
    <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
    <!--eof-optional categories tabs navigation display-->

    <!--bof-header ezpage links-->
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
    <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php } ?>
    <!--eof-header ezpage links-->
    </div>
    <?php } ?>

  6. #6
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: How to change the desert noon logo and header to my own shop's name?

    Quote Originally Posted by luckystar View Post
    Hi hi,

    I had added the following but it still didn't link to the main page.
    The instructions given by you is so clear n yet I still can't get it fix

    <div id="navMainWrapper">
    <div id="navMain">
    <li><?php echo '<a href="http://www.mybrainykidz.com/">'; ?><?php echo 'Main Web Site'; ?></a></li>
    <ul class="back">
    <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
    make the following change:

    PHP Code:
    <div id="navMain">
    <ul class="back">
    <li><?php echo '<a href="http://www.mybrainykidz.com/">'?><?php echo 'Main Web Site'?></a></li>
    <li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>

  7. #7
    Join Date
    Sep 2009
    Posts
    10
    Plugin Contributions
    0

    Default Re: How to change the desert noon logo and header to my own shop's name?

    Hi Clyde,
    I had sent u a pm, let me know if u didn't rec it? I still can't get it fix

    Quote Originally Posted by clydejones View Post
    make the following change:

    PHP Code:
    <div id="navMain">
    <ul class="back">
    <li><?php echo '<a href="http://www.mybrainykidz.com/">'?><?php echo 'Main Web Site'?></a></li>
    <li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>

 

 

Similar Threads

  1. how can I remove the logo "Computer store the.." from the header and put my own.
    By fkalanda in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 29 Jul 2013, 09:23 PM
  2. Desert Noon Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 176
    Last Post: 10 Jan 2013, 05:40 PM
  3. How do I change the Logo to my own?
    By rob22 in forum General Questions
    Replies: 10
    Last Post: 2 Nov 2009, 08:33 PM
  4. help with custom template desert noon
    By meesh in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 19 Feb 2009, 12:00 AM
  5. how do i change the zen cart logo to my own logo
    By fitzpatrick models in forum Basic Configuration
    Replies: 1
    Last Post: 13 Dec 2007, 01:57 AM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR