Page 162 of 326 FirstFirst ... 62112152160161162163164172212262 ... LastLast
Results 1,611 to 1,620 of 3251
  1. #1611
    Join Date
    Mar 2007
    Location
    West Palm Beach, FL.
    Posts
    95
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Your site seems to be not loading right now. Also, can you please state the entire issue, I can't remember what it was from before, and don't want to search backward, thanks!
    I loaded the drop down header and somewhere along the way i screwed something up and it moved the home and login links to the right side and removed the divider

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by [email protected] View Post
    I loaded the drop down header and somewhere along the way i screwed something up and it moved the home and login links to the right side and removed the divider
    Code:
    <div id="navMainLinks">
    <ul class="back">
    <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><span><?php echo HEADER_TITLE_CATALOG; ?></span></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><span><?php echo HEADER_TITLE_LOGIN; ?></span></a></li>
    </ul>
    </div>
    Try pasting this instead of the previous code I posted. I didn't realize you wanted the dividers back.

  3. #1613
    Join Date
    Mar 2007
    Location
    West Palm Beach, FL.
    Posts
    95
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Code:
    <div id="navMainLinks">
    <ul class="back">
    <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><span><?php echo HEADER_TITLE_CATALOG; ?></span></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><span><?php echo HEADER_TITLE_LOGIN; ?></span></a></li>
    </ul>
    </div>
    Try pasting this instead of the previous code I posted. I didn't realize you wanted the dividers back.
    ok I pasted that and it corrected the links but now the header is blue

    http://hiquatec.com

  4. #1614
    Join Date
    Mar 2007
    Location
    West Palm Beach, FL.
    Posts
    95
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by [email protected] View Post
    ok I pasted that and it corrected the links but now the header is blue

    http://hiquatec.com


    <?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 3392 2006-04-08 15:17:37Z birdbrain $
    */
    ?>
    <?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 {
    }
    ?>
    <!-- divs for drop shadow -->
    <div id="nw"><div id="ne"><div id="se"><div id="sw"><div id="n"><div id="s"><div id="w"><div id="e"><div id="main"><table id="workaround"><tbody><tr><td>
    <!--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">
    <div id="navMainLinks">
    <ul class="back">
    <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><span><?php echo HEADER_TITLE_CATALOG; ?></span></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><span><?php echo HEADER_TITLE_LOGIN; ?></span></a></li>
    </ul>
    </div>

    </ul>(I Took This Out)
    </div>(and this and it fixed the problem)
    <div id="navMainSearch">
    <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
    </div>
    </div>
    </div>
    <div class="clearBoth"></div>
    <!--eof-navigation display-->
    <!--bof-branding display-->
    <div id="logoWrapperOuter">
    <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, 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>
    </div>
    </div>
    <div class="clearBoth"></div>
    <!--eof-branding display-->
    <!--eof-header logo and 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-->
    <!--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-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-->
    <div class="clearBoth"></div>
    <?php } ?>

  5. #1615

    Default Re: Problems when trying to print product pages

    Quote Originally Posted by esugrue View Post
    Hi!

    If a customer goes to print a product page (File > Print) there is a problem, depending on whether they are using FF or IE.

    in FF it seems the first page printed contains just the header and Page 2-- contains the page.

    In IE the pages seem to printed all on top of one another.

    You can see what I mean in these images:



    Internet Explorer



    Firefox Page 1



    Firefox Page 2


    Any idea on how to make the product screens print correctly from the start on all browsers?

    Thanks
    Ernie
    Attached is my attempt at a print_stylesheet.css for the apple_zen template. Maybe you can use it as a starting point.

    best,

    Tom
    Attached Files Attached Files

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

    Default Re: Problems when trying to print product pages

    Quote Originally Posted by loosefast View Post
    Attached is my attempt at a print_stylesheet.css for the apple_zen template. Maybe you can use it as a starting point.

    best,

    Tom
    Cool, thanks, I'll add and tweak in my next update.

  7. #1617
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Amazingly, I was able to take care of 28 of 29 validation errors. The final one seems to be Cherry Zen related but I'm having a difficult time tracking down the source of the problem. Here is the error as listed:
    1. Error Line 35, Column 296: value of attribute "type" cannot be "search"; must be one of "text", "password", "checkbox", "radio", "submit", "reset", "file", "hidden", "image", "button".

    …tion" value="1" /><input type="search" name="keyword" id="searchTop" size="20

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.
    Searching on the error itself brought me to this post by
    Kuroi. It seems as though I need to change type="search" to type="text". However, I can't find where I need to make that change. I'm getting a negative return for type="search" in the Developers Tool Kit.
    Can one of you folks point me in the right direction? Thanks!!

  8. #1618
    Join Date
    Jul 2008
    Posts
    5
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    New to Zen Cart and am massively impressed with all your templates (especially cherry and apple zen)

    Have searched the thread and cannot for the life of me find the answer to my problem..
    If I enable search_header.php then nothing shows anywhere on the site except what looks like the top header bar in red but no other text, buttons, categories, etc.
    I have tried a complete new install of Zen Cart and template but to no avail...

    (MySQL database on a Linux server if it makes a difference)

    sorry for being so newbie and cluless!

  9. #1619
    Join Date
    Jul 2008
    Posts
    5
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Sorry for double post - missed 7 minute edit allowance...

    Validation gives a total of 34 errors with search_header but zero without.

    (MySQL database on a Linux/UNIX server if it makes a difference)

    sorry for being so newbie and cluless!

    URL: www.poshtotties.com

  10. #1620
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by MeltDown View Post
    Amazingly, I was able to take care of 28 of 29 validation errors. The final one seems to be Cherry Zen related but I'm having a difficult time tracking down the source of the problem. Here is the error as listed:


    Searching on the error itself brought me to this post by
    Kuroi. It seems as though I need to change type="search" to type="text". However, I can't find where I need to make that change. I'm getting a negative return for type="search" in the Developers Tool Kit.
    Can one of you folks point me in the right direction? Thanks!!
    Hmmm... The more I look into this, the more it seems to be a Safari/MAC issue, although I'm PC. Either way it's the Final error and I'd love to get rid of it!

 

 

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 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