Page 190 of 305 FirstFirst ... 90140180188189190191192200240290 ... LastLast
Results 1,891 to 1,900 of 3042
  1. #1891
    Join Date
    Apr 2008
    Location
    Raleigh, NC
    Posts
    36
    Plugin Contributions
    0

    Default Question about category mod.

    Hi,

    I've recently discovered both Zen cart and the apple zen template, which is GREAT! I am slowly working on an online floral shop and the apple zen template has a lot of what i've been looking for.

    One question, however:

    I would like to inquire about how to modify the category/link CSS display so that:

    a) the categories are displayed horizontally in using the CSS menu style with sub categories being displayed as the vertical component (instead of the horizontal listing with just top category links).

    b) the information items (about us, my account, etc.) is displayed somewhere else (maybe in a box on the right).

    This is my html mock-up/design for the site:
    http://tegflorist.com/indexmain.php

    Any suggestions/help would be appreciated.

    Thanks,
    W

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

    Default Re: Question about category mod.

    Quote Originally Posted by english_1969 View Post
    Hi,

    I've recently discovered both Zen cart and the apple zen template, which is GREAT! I am slowly working on an online floral shop and the apple zen template has a lot of what i've been looking for.

    One question, however:

    I would like to inquire about how to modify the category/link CSS display so that:

    a) the categories are displayed horizontally in using the CSS menu style with sub categories being displayed as the vertical component (instead of the horizontal listing with just top category links).

    b) the information items (about us, my account, etc.) is displayed somewhere else (maybe in a box on the right).

    This is my html mock-up/design for the site:
    http://tegflorist.com/indexmain.php

    Any suggestions/help would be appreciated.

    Thanks,
    W
    a) try using the "Pauls Version" of the css drop down menu, you'll find it in the downloads section in "other modules"

    b) Turn on the ezpages sidebox, and add any pages you'd like (you can link to the about us page, my account page, etc.), under "Tools", "Layout boxes controller", then add the ezpages under "Tools", "Ezpages".

  3. #1893
    Join Date
    Mar 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hi just a quick question,

    How can I edit the Gift Cert. page? I have changed the breadcrumb bit already

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by 1st4Advertising View Post
    Hi just a quick question,

    How can I edit the Gift Cert. page? I have changed the breadcrumb bit already
    includes/languages/english/YOUR_TEMPLATE/gv_faq.php

  5. #1895
    Join Date
    May 2006
    Location
    Scotland
    Posts
    198
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    I have a site which I built using apple zen some time ago and it has worked just great. The client now wants to offer items for sale in different currencies. I've switched on sideboxes/currencies in layout box controller and set it to OFF, LEFT, 0, 0, ON as I would like it to appear next to the search box.
    This hasn't done the trick though. How do I get them to display?

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by high2K View Post
    I have a site which I built using apple zen some time ago and it has worked just great. The client now wants to offer items for sale in different currencies. I've switched on sideboxes/currencies in layout box controller and set it to OFF, LEFT, 0, 0, ON as I would like it to appear next to the search box.
    This hasn't done the trick though. How do I get them to display?
    You have to add the code for the currencies sidebox in includes/templates/YOUR_TEMPLATE/common/tpl_header.php

    Code:
    <?php require(DIR_WS_MODULES . 'sideboxes/currencies.php'); ?>

  7. #1897
    Join Date
    May 2006
    Location
    Scotland
    Posts
    198
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hi Jettrue,
    Thanks for your help. But where do I put this code? The page code up to EZPAGES_STATUS header is as follows:

    Code:
    ?>
    <?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" class="clearfix">
      <div id="headerWrappera">
        <div id="headerWrapperb">
          <div id="headerWrapperc">
            <!--bof-navigation display-->
            <div id="navMainWrapper" class="clearfix">
              <div id="navMain">
                <div id="navMainLinks">
                  <ul class="back2">
                    <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>
              </div>
            </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>
            <!--eof-branding display-->
            <!--eof-header logo and navigation display-->
            <!--bof-header ezpage links-->
    I'd like the currencies to display to the left of the search box. I tried putting the line of code you gave me directly before
    Code:
    <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
    but that gave me errors when I opened the page.

  8. #1898
    Join Date
    Apr 2008
    Posts
    4
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    I love the Apple Zen template it really looks good.

    What is the best way to move an attribute up to the level of the Add to Cart, just under Shipping Weight?

    Any help would be appreciated.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jonm View Post
    I love the Apple Zen template it really looks good.

    What is the best way to move an attribute up to the level of the Add to Cart, just under Shipping Weight?

    Any help would be appreciated.
    Open up includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php

    Everything is nicely segregated in that template, you can move chunks around where you'd like them.

  10. #1900
    Join Date
    Dec 2007
    Posts
    25
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hi,

    I install apple zen template, everything fine exept the horizontal menu with IE7.
    When I rollover the main title, the subtitles appear but come instead of the title. Upfully you understand what happens!!
    here is the URL: http://cart.smoother.biz

    I'll try to replace my stylesheet with the one found in the last version of apple zen template; but it's exactely the same think. I don't know where is from!!!

    Any help will be really appreciate!

    Greg
    Greg

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3725
    Last Post: 20 Feb 2025, 05:46 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

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