Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 23
  1. #11
    Join Date
    Jul 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Removing powered by Zen Cart Logo in Header

    Thanks for the reply but I don't seem to have that code in includes\templates\template_default\common\tpl_header.php

    Here is the code I have

    <?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-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
    <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>
    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></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 } } ?>

    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    <?php }?>
    </ul>
    </div>
    <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
    <br class="clearBoth" />
    </div>
    <!--eof-navigation display-->

    <!--bof-branding display-->
    <div id="logoWrapper">
    <div id=""><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,''). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</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-->

    <!--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 } ?>

    Which bit should I comment out please?

  2. #12
    Join Date
    Jul 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Removing powered by Zen Cart Logo in Header

    Ok found the problem, found bits of code missing and then uploaded to the new folder.
    Many thanks for the help with the folder suggestion

  3. #13

    Default Re: Removing powered by Zen Cart Logo in Header

    Hello Merlinpa. I managed to remove the ZenCart logo by following your instructions ie. placing <!-- at start and --> at end of the code you stated.

    After that I inserted my own company logo by naming my logo as logo.gif and changing header.php as follows :

    // added defines for header alt and text define('HEADER_ALT_TEXT', 'Cable Master :: Cabling Professionals at your Service'); define('HEADER_SALES_TEXT', 'TagLine Here'); define('HEADER_LOGO_WIDTH', '235px'); define('HEADER_LOGO_HEIGHT', '50px'); define('HEADER_LOGO_IMAGE', 'logo.gif');

    but I still get the ZenCart logo in my site cablemaster.com.sg/ecable/

  4. #14
    Join Date
    Mar 2009
    Location
    Peterborough UK
    Posts
    336
    Plugin Contributions
    0

    Default Re: Removing powered by Zen Cart Logo in Header

    HI
    That worked great for me, thanks.

  5. #15
    Join Date
    Feb 2009
    Posts
    861
    Plugin Contributions
    0

    Default Re: Removing powered by Zen Cart Logo in Header

    I have already removed the "additional" logo of Powered by zen in my header and everything was fine. Today, i added a second language and everything is going well except that the POWERED BY ZEN logo has reappeared in the French version. I have no way to remember how to remove it from that one language as i cannot find a header.php that is specifically for my customised template, nor any "leftover" file in the default that i would have edited previously.

    Anyone can help me? my store is : http://creationcassel.com/store and this logo is only visible on the French version.

  6. #16
    Join Date
    Jun 2003
    Posts
    33,715
    Plugin Contributions
    0

    Default Re: Removing powered by Zen Cart Logo in Header

    You should have a header.php in the French language pack - customize it the same way you did for your template.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  7. #17
    Join Date
    Feb 2009
    Posts
    861
    Plugin Contributions
    0

    Default Re: Removing powered by Zen Cart Logo in Header

    Ok i edited it as the English one was, but now, i am getting something else showing. Where do i edit for that?

  8. #18
    Join Date
    Apr 2006
    Location
    Ohio
    Posts
    6,162
    Plugin Contributions
    0

    Default Re: Removing powered by Zen Cart Logo in Header

    Ca,
    Locate this:
    includes/templates/cc/css/stylesheet.css

    Add this to the bottom of the sheet.

    #tagline {display: none;}
    Mark
    Hare Do

  9. #19
    Join Date
    Feb 2009
    Posts
    861
    Plugin Contributions
    0

    Default Re: Removing powered by Zen Cart Logo in Header

    Amost there. Just the X to remove. I guess it is looking for something that is not there.

  10. #20
    Join Date
    Apr 2006
    Location
    Ohio
    Posts
    6,162
    Plugin Contributions
    0

    Default Re: Removing powered by Zen Cart Logo in Header

    Ca,
    Just add #logo beside the previous declaration

    EX:
    #tagline, #logo {display: none;}
    Mark
    Hare Do

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. blank pages after removing "Powered by Zen Cart"
    By mmmm in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 7 Jul 2010, 08:27 AM
  2. Changing the 'Powered By, Zen Cart, the art of ecomerce' logo?!
    By cmerr85 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 29 Nov 2009, 06:54 AM
  3. Removing Powered by Zen Cart Banner from Invoice
    By Jippers in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 28 Aug 2008, 12:11 PM
  4. Powered by Zen Cart Logo
    By stevepickup in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 17 Sep 2007, 02:41 PM

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