Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 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 Tom_Ace View Post
    Hi Tom_Ace... can I see a real link for this site?

  2. #2
    Join Date
    Aug 2006
    Posts
    100
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Hi Tom_Ace... can I see a real link for this site?
    Oh yes sure here...

    http://www.cws-mart.com/

  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 Tom_Ace View Post
    I need help on this situation. Here the screenshot that i want it to be fixed. Sorry for my english.
    Ok, we'll address this one by one, and hopefully I'm understanding what you want.

    To remove the top section with "HOME and LOGIN", open up includes/templates/YOUR_TEMPLATE/common/tpl_header.php and REMOVE:
    Code:
      <div id="navMainWrapper">
        <div id="navMain">
          <div id="navMainLinks">
            <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>
        </div>
      </div>
      <div class="clearBoth"></div>


    To remove that grey section to the left and right of the drop down menu header, REMOVE this from the stylesheet.css:

    Code:
    #dropMenuWrapper {
    	background:#929292; /* medium grey bar outside of the header menu */
    	}



    To get the gray gradient backround to go all the way up the site REPLACE the body section with this:

    Code:
    body {
    	background:url(../images/site-bg-grey.gif) repeat-x;
            }
    AND also REPLACE #headerWrapper to this:

    #headerWrapper {
    width:100%;
    text-align:center;
    margin:0 auto;
    }

    Now since your LOGO has a white background, it may look funny with the grey background going all the way up.


    I see you've already got the product image to the right.



    The BUTTON_ADD_SELECTED_ALT issue... it looks like there's something wrong with your coding on the product listing page, because its not pointing to:
    includes/templates/YOUR_TEMPLATE/buttons/english/button_add_selected.gif

    Open up includes/templates/YOUR_TEMPLATE/templates/tpl_modules_product_listing.php and make sure that around line 19 and 58, you have this code:
    Code:
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_ADD_PRODUCTS_TO_CART, BUTTON_ADD_PRODUCTS_TO_CART_ALT, 'id="submit1" name="submit1"'); ?></div>
    As to your very last problem (fatal error) I'm guessing that you're not using zen cart 1.3.7??

  4. #4
    Join Date
    Aug 2006
    Posts
    100
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Got every other top work! Expect for the BUTTON_ADD_SELECTED_ALT issue, I dont have tpl_modules_product_listing.php in MY_TEMPLATE but i do have it in default_template. Any idea?? I have already try add the tpl_modules_product_listing.php in MY_TEMPLATE and still getting the same error.

    Also for my last problem, I am using 1.3.6, Do i need to upgrade to 1.3.7 to get this work?

  5. #5
    Join Date
    Aug 2006
    Posts
    100
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by Tom_Ace View Post
    Expect for the BUTTON_ADD_SELECTED_ALT issue, I dont have tpl_modules_product_listing.php in MY_TEMPLATE but i do have it in default_template. Any idea?? I have already try add the tpl_modules_product_listing.php in MY_TEMPLATE and still getting the same error.
    Forgot to mention that i do have this code in default_template.

    Code:
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_ADD_PRODUCTS_TO_CART, BUTTON_ADD_PRODUCTS_TO_CART_ALT, 'id="submit1" name="submit1"'); ?></div>

  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 Tom_Ace View Post
    Forgot to mention that i do have this code in default_template.

    Code:
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_ADD_PRODUCTS_TO_CART, BUTTON_ADD_PRODUCTS_TO_CART_ALT, 'id="submit1" name="submit1"'); ?></div>
    Open up includes/languages/english/button_names.php

    and make sure this line is in there:

    define('BUTTON_IMAGE_ADD_PRODUCTS_TO_CART','button_add_selected.gif');

    In the download for apple_zen, there is a "pre-1.3.7 files" folder. In there you'll find files that you'll need to use if you aren't using 1.3.7.

  7. #7
    Join Date
    Aug 2006
    Posts
    100
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Got it! Worked like charm.

    1 more request, I looked in tpl_drop_menu.php and wanted to add "ebay" in the menu but i dont understand those drop down menu. So what do i do?

  8. #8
    Join Date
    May 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    I soooooo new to zencart! I love the apple and am trying to install it on my site. I installed all the My_template files etc. But I am unsure how I upload the apple zen files.
    Any help would be so greatly appreciated

  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 wrapper View Post
    I soooooo new to zencart! I love the apple and am trying to install it on my site. I installed all the My_template files etc. But I am unsure how I upload the apple zen files.
    Any help would be so greatly appreciated
    Hmmm. What are all the My_template files you are referring to? Do you have an ftp program to upload the files? How much have you done so far?

  10. #10
    Join Date
    May 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    I did install an ftp...but I am not real sure how to use it. I tried and it said that it was closed and couldn't connect

    I did the beginning how to customize your template here:
    http://www.zen-cart.com/forum/faq.ph...late_customize

 

 
Page 2 of 4 FirstFirst 1234 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