Page 18 of 305 FirstFirst ... 816171819202868118 ... LastLast
Results 171 to 180 of 3042
  1. #171
    Join Date
    Feb 2007
    Posts
    19
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    I think top level would be the best option or a top level titled links where other links could be below it

    THANX
    MITCHcecg

    btw if you want to look at the site it is http://igethigh.net

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

    Default Re: Apple Zen Template Support Thread

    I need help on this situation. Here the screenshot that i want it to be fixed. Sorry for my english.




  3. #173
    Join Date
    Aug 2006
    Posts
    100
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread


  4. #174
    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 mitchcecg View Post
    I think top level would be the best option or a top level titled links where other links could be below it

    THANX
    MITCHcecg

    btw if you want to look at the site it is http://igethigh.net
    Hi!

    You can hardcode the phpbb forum link (without using PHP) like this:

    Open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and lets say you want the forum link to show up after CONTACT US. This is what the contact us link and the following forum link would look like.

    Code:
    <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li>
    <li class="submenu"><a href="http://www.yourforumlinkhere.com/">FORUM</a></li>

  5. #175
    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?

  6. #176
    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/

  7. #177
    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??

  8. #178
    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?

  9. #179
    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>

  10. #180
    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.

 

 

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