Results 1 to 9 of 9
  1. #1
    Join Date
    Jun 2011
    Posts
    4
    Plugin Contributions
    0

    Default Please help me D:- avignon template

    I have been trying to fix this for 3 days, have searched this forum up and down but still cannot figure out how to fix this. My site is here:
    http://scrappinnaturally.com If you notice on the header it has print saying znc_ and home address, etc. How do i get rid of that? I hope some one knows because I really need to get this fixed.

    Thanks so much!
    Last edited by Kim; 11 Dec 2011 at 11:31 PM.

  2. #2
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,174
    Plugin Contributions
    0

    Default Re: Please help me D:

    I don't know why it's happening, but I'm posting what I found so that it might give someone else the information they need to help you.

    This is what I see when I view the source of the page (colors added by me):

    Code:
    <!--bof-branding display-->
    <div id="logoWrapper">
    <address style="float:right; text-align:right; margin: 105px 40px 1px 1px; font-weight:bold;">Store Name<br />
     Address<br />
     Country<br />
     Phone</address><div class="headerTitle"><h1 class="shadow">znc_</h1><h1>znc_</h1></div>
        
    
    </div>
    and
    Code:
    <!--bof- site copyright display -->
    <div id="siteinfoLegal" class="legalCopyright">Copyright &copy; 2011 <a href="http://www.scrappinnaturally.com/index.php?main_page=index&amp;zenid=xxxxxxxxxxxxxxxxxxxxxxx" target="_blank">znc_</a>. Powered by <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a> <a href="http://www.simplescripts.com/script_details/install:Zen Cart" title="install Zen Cart">Install Zen Cart</a> <a href="http://www.hostmonster.com" title="web hosting">web hosting</a> &nbsp; | &nbsp; Get a <a href="http://samwilson3d.com/instant-design-quote">Web Design Quote</a> from <a href="http://samwilson3d.com/ocala-web-design">Gainesville Web Design</a></div>
    <!--eof- site copyright display -->
    In the meantime, try this:

    Go to your Zen Cart admin.
    admin>tools>developers tool kit
    At the bottom of the list you'll see a box labeled "Look-up in all files". Enter znc_ in the box and select "all files catalog/admin" from the pulldown menu next to the box. Click the search button at the far right. That may give you the source of the znc_
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

  3. #3
    Join Date
    Jan 2009
    Location
    Ireland
    Posts
    431
    Plugin Contributions
    0

    Default Re: Please help me D:

    In your tpl_header php file you must have errors around line 70

    it should read:

    PHP Code:
    <div id="logoWrapper">
    <address style="float:right; text-align:right; margin: 105px 40px 1px 1px; font-weight:bold;"><?php echo nl2br(STORE_NAME_ADDRESS); ?></address>
    <div class="headerTitle"><h1 class="shadow"><?php echo STORE_NAME?></h1><h1><?php echo STORE_NAME?></h1></div>
    you should find the file in

    includes/templates/avignon/common


  4. #4
    Join Date
    Jun 2011
    Posts
    4
    Plugin Contributions
    0

    Default Re: Please help me D:

    Thank you both so much. But neither suggestion worked. I am at a loss as to what to do. I can't change templates because my client wants this one. I have never encountered this problem before. If anyone else has anymore suggestions i would appreciate it. Thanks again.

  5. #5
    Join Date
    Jan 2009
    Location
    Ireland
    Posts
    431
    Plugin Contributions
    0

    Default Re: Please help me D:

    Quote Originally Posted by bobbiesea View Post
    Thank you both so much. But neither suggestion worked. I am at a loss as to what to do. I can't change templates because my client wants this one. I have never encountered this problem before. If anyone else has anymore suggestions i would appreciate it. Thanks again.
    what code do you have in that file?

  6. #6
    Join Date
    Jun 2011
    Posts
    4
    Plugin Contributions
    0

    Default Re: Please help me D:

    Hi Donal, thanks for your help. Here is the whole code from the file.


    <?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">
    <address style="float:right; text-align:right; margin: 105px 40px 1px 1px; font-weight:bold;"><?php echo nl2br(STORE_NAME_ADDRESS); ?></address>
    <div class="headerTitle"><h1 class="shadow"><?php echo STORE_NAME; ?></h1><h1><?php echo STORE_NAME; ?></h1></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
    }
    ?>


    </div>
    <br class="clearBoth" />
    <!--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-->
    <!--eof-branding display-->

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

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

  7. #7
    Join Date
    Jan 2009
    Location
    Ireland
    Posts
    431
    Plugin Contributions
    0

    Default Re: Please help me D:

    what happens if you just comment out line 71 and 72?

  8. #8
    Join Date
    Jun 2011
    Posts
    4
    Plugin Contributions
    0

    Default Re: Please help me D:

    That worked!! You are my absolute hero today! Thanks so, so, so much and I made a note of this just in case it ever happens again!

  9. #9
    Join Date
    Aug 2011
    Posts
    10
    Plugin Contributions
    14

    Default Re: Please help me D:

    For future reference for those who read this thread, simply filling out the store info in the admin will give the correct result.

 

 

Similar Threads

  1. v150 New to this - avignon template installation
    By epanagio in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 9 May 2012, 07:34 AM
  2. Problems viewing my web site using Avignon template
    By Paul...the...first in forum Addon Templates
    Replies: 4
    Last Post: 24 Feb 2012, 11:03 AM
  3. Replies: 3
    Last Post: 9 Oct 2010, 06:30 PM
  4. Having a problem with Avignon Template
    By ribanett in forum Addon Templates
    Replies: 1
    Last Post: 2 Oct 2010, 06:34 PM
  5. Template Coding / CSS template location help please?
    By ttac in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 16 Jun 2010, 06:37 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