Page 1 of 2 12 LastLast
Results 1 to 10 of 3041

Hybrid View

  1. #1
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by MasterGroove View Post
    Try and set up an account....

    I think you'll see it moves to the bottom of the page...
    You've got the header file all whacked up. (that's the technical term) . PM me a copy of the tpl_header.php file.

  2. #2
    Join Date
    Apr 2006
    Location
    Southern California
    Posts
    27
    Plugin Contributions
    0

    help question Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    You've got the header file all whacked up. (that's the technical term) . PM me a copy of the tpl_header.php file.
    here it is...


    <?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 4066 2006-08-06 05:50:06Z ajeh $
    */
    ?>

    <div id="headerWrapper">
    <!--bof-branding display-->
    <div id="logoWrapper">
    <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) . '</a>'; ?></div>

    <div id="navMain">
    <ul class="forward">
    <?php if ($_SESSION['customer_id']) { ?>
    <li><p style="text-align: left; margin-top: -5px; margin-bottom: -5px"><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
    <li><p style="text-align: left; margin-top: -5px; margin-bottom: -5px"><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><p style="text-align: left; margin-top: -5px; margin-bottom: -5px"><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
    <li><p style="text-align: left; margin-top: -5px; margin-bottom: -5px"><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
    <?php } } ?>



    <li><p style="text-align: left; margin-top: -5px; margin-bottom: -5px"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>

    </div></ul>


    <?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>
    <!--eof-branding display-->

    <?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) {
    ?>
    <?
    //<!--bof-drop down menu display-->
    // <?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_drop_menu.php');?>
    // <!--eof-drop down menu display-->
    ?>


    <!--eof-header logo and navigation display-->
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
    <ul class="back">



    </ul>
    </div>
    <div class="navMainSearch center"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
    <br class="clearBoth" />
    </div>
    <!--eof-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 } ?>

  3. #3
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by MasterGroove View Post
    here it is...

    Ok. I'm pm'ing you a copy of the file, but to be honest, it was SO completely hacked to bits that I don't know if I've got it back to working condition or not. So my advice to you, if it causes some big errors, is to reload the ORIGINAL file, then come here to ask for help to get it where you want it.

    It also looks like you're using an older version of the tempate, and I would suggest upgrading to the new one, and starting fresh.

  4. #4
    Join Date
    Jun 2007
    Posts
    7
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Everything seemed working fine with this wonderful templateI until I found out...

    The drop menu is working perfectly in Fire Fox (mac & win) and Safari (mac), but the drop down menu won't appear in IE (win).

    I've reinstalled the original stylesheet, stylesheet-header menu, tpl_drop_menu, but no luck.

    COWOA and time zone offset mods have been installed, but I don't know if they are causing this problem.

    Has anyone had the same problem?
    Any advice would be appreciated.
    ZC 1.3.7

  5. #5
    Join Date
    Apr 2006
    Location
    Dark Side of the Moon
    Posts
    987
    Plugin Contributions
    1

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by mazinego View Post
    Everything seemed working fine with this wonderful templateI until I found out...

    The drop menu is working perfectly in Fire Fox (mac & win) and Safari (mac), but the drop down menu won't appear in IE (win).

    I've reinstalled the original stylesheet, stylesheet-header menu, tpl_drop_menu, but no luck.

    COWOA and time zone offset mods have been installed, but I don't know if they are causing this problem.

    Has anyone had the same problem?
    Any advice would be appreciated.
    Mazinego, did you upload the csshover.htc class file to the /includes directory? I believe this is necessary for IE to work properly.

  6. #6
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by mazinego View Post
    Everything seemed working fine with this wonderful templateI until I found out...

    The drop menu is working perfectly in Fire Fox (mac & win) and Safari (mac), but the drop down menu won't appear in IE (win).

    I've reinstalled the original stylesheet, stylesheet-header menu, tpl_drop_menu, but no luck.

    COWOA and time zone offset mods have been installed, but I don't know if they are causing this problem.

    Has anyone had the same problem?
    Any advice would be appreciated.
    I'm assuming you're using IE6, and like chadderuski said, the problem is probably due to the missing csshover.htc file.

  7. #7
    Join Date
    Jun 2007
    Posts
    7
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    chadderuski, jettrue,
    I reinstalled that csshover.htc file, and it works like a charm.

    Thank you! Thank you! Thank you!
    ZC 1.3.7

  8. #8
    Join Date
    Apr 2006
    Location
    Southern California
    Posts
    27
    Plugin Contributions
    0

    help question Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Ok. I'm pm'ing you a copy of the file, but to be honest, it was SO completely hacked to bits that I don't know if I've got it back to working condition or not. So my advice to you, if it causes some big errors, is to reload the ORIGINAL file, then come here to ask for help to get it where you want it.

    It also looks like you're using an older version of the tempate, and I would suggest upgrading to the new one, and starting fresh.
    Hi JetTrue,

    Well I moved all the apple zen folders to a subfolder titled 'old template files' to start fresh. I installed Apple Zen 2.0 template structure and then added the Alternate Header 1.1a module.

    It now looks like this: http://vardanyanjewelry.net Where do I go from here?

    Thanks again for your assistance,
    Michael

  9. #9
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by MasterGroove View Post
    Hi JetTrue,

    Well I moved all the apple zen folders to a subfolder titled 'old template files' to start fresh. I installed Apple Zen 2.0 template structure and then added the Alternate Header 1.1a module.

    It now looks like this: http://vardanyanjewelry.net Where do I go from here?

    Thanks again for your assistance,
    Michael
    Don't install the alternate header module. You're not putting it in the right spot or something, and you have messed up the php comments somehow. Install the 2.0 template without any changes, then let me show you exactly what to do.

  10. #10
    Join Date
    Aug 2006
    Posts
    15
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    I dunno if this issue has been addressed...

    I just installed the template and I am looking though my page. In the Information>about us it shows a 404 errorage not found and the site map.

    Did I just screw something up and how do I fix it? thanks!!!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3726
    Last Post: 2 Feb 2026, 06:28 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM

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