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 Support Thread

    Quote Originally Posted by srturner47 View Post
    One more question! I hope you don't mind. I am trying to make the menus appear ok in Internet Explorer. But, I have found that they display below the drop-down menus in IE6. I did a search and found this advice:

    Move them out of the way by adding to stylesheet.css:

    #sorter select {float:right;clear:both;width:120px;}

    #sorter label {float:right;}

    This worked great for the "Sort by" selectors. But, it doesn't do anything for the Alpha Sorter Selector which lets you select a letter.

    Does anyone have any idea how to do the same thing with the alpha sorter?
    Look at the source of the site, and see what selector the alpha sorter is using, then apply the same css to those.

  2. #2
    Join Date
    Jan 2007
    Posts
    49
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    On my sideboxes Credit Cards Accepted is not reading correctly:
    Here is the code from the file below:
    BOX_HEADING_CC_ACCEPT this is how it reads on my sideboxes.
    In my includes languages english.php file there is no coding to define box heading cc accept. Do i need to add that in the file and if so how exactly should it read?


    <?php
    /**
    * cc_accept.php
    *
    * Loaded automatically by index.php?main_page=account_edit.<br />
    * Displays information related to a single specific order
    *
    * @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
    * $Id: cc_accept.php v 1.2 2006-09-06
    * Originally copied from featured.php and modified by Carter Harris
    * Upgraded to work with Zen Cart 1.3 by kuroi
    */

    // test if box should display
    $show_cc_accept = true;

    if ($show_cc_accept == true) {
    require($template->get_template_dir('tpl_cc_accept.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_cc_accept.php');

    $title = BOX_HEADING_CC_ACCEPT;
    $title_link = false;

    require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
    }
    ?>
    [FONT=Arial]DezineJunkie[/FONT]

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by DezineJunkie View Post
    On my sideboxes Credit Cards Accepted is not reading correctly:
    Here is the code from the file below:
    BOX_HEADING_CC_ACCEPT this is how it reads on my sideboxes.
    In my includes languages english.php file there is no coding to define box heading cc accept. Do i need to add that in the file and if so how exactly should it read?
    IN the download section, the credit card accept mod DOES have a language file with BOX_HEADING_CC_ACCEPT in it, make sure all files are uploaded.

  4. #4

    Default Re: Apple Zen Support Thread

    I'm sorry. I really don't know squat about CSS. Most of what I have done has been through trial and error. I've spent about 4 hours trying to figure this out, and I just don't get it. Here is the code for the alpha sorter:

    <?php
    /**
    * product_listing_alpha_sorter module
    *
    * @package modules
    * @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: product_listing_alpha_sorter.php 4330 2006-08-31 17:10:26Z ajeh $
    */
    if (!defined('IS_ADMIN_FLAG')) {
    die('Illegal Access');
    }

    // build alpha sorter dropdown
    if (PRODUCT_LIST_ALPHA_SORTER == 'true') {
    if ((int)$_GET['alpha_filter_id'] == 0) {
    $letters_list[] = array('id' => '0', 'text' => TEXT_PRODUCTS_LISTING_ALPHA_SORTER_NAMES);
    } else {
    $letters_list[] = array('id' => '0', 'text' => TEXT_PRODUCTS_LISTING_ALPHA_SORTER_NAMES_RESET);
    }
    for ($i=65; $i<91; $i++) {
    $letters_list[] = array('id' => sprintf('%02d', $i), 'text' => chr($i) );
    }
    for ($i=48; $i<58; $i++) {
    $letters_list[] = array('id' => sprintf('%02d', $i), 'text' => chr($i) );
    }
    if (TEXT_PRODUCTS_LISTING_ALPHA_SORTER != '') {
    echo '<label class="inputLabel">' . TEXT_PRODUCTS_LISTING_ALPHA_SORTER . '</label>' . zen_draw_pull_down_menu('alpha_filter_id', $letters_list, (isset($_GET['alpha_filter_id']) ? $_GET['alpha_filter_id'] : ''), 'onchange="this.form.submit()"');
    } else {
    echo zen_draw_pull_down_menu('alpha_filter_id', $letters_list, (isset($_GET['alpha_filter_id']) ? $_GET['alpha_filter_id'] : ''), 'onchange="this.form.submit()"');
    }
    }
    ?>

    I don't see anything like #sorter select in there that I could use.....

    Sorry. I am a total newb. I appreciate any help someone could provide in moving the alpha sorter to the right of the screen so that the menus don't overlap it causing a problem in IE6.

    Thanks!

  5. #5

    Default Re: Apple Zen Support Thread

    EEKK!!! I found another problem. I hope I am not too annoying. My site layout is pretty much set, but I am working to test and find problems right now. So, I am full of problems.

    Here's the issue:

    With Apple Zen, in IE7, if you activate a submenu under "Categories" and then move your mouse to the webpage from the submenu, when you hover over Categories again, you will get a blank part where the submenus were before. Attached is a screenshot from Jettrue's webpage that shows the problem. Any idea how to fix that?

    By the way, I am more than happy to make a contribution, Jettrue. Your template is essential for my site, and I certainly appreciate all the effort you have put into it and giving advice on this thread. Is there any way I can do so?

    Thanks!
    Attached Images Attached Images  

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by srturner47 View Post
    EEKK!!! I found another problem. I hope I am not too annoying. My site layout is pretty much set, but I am working to test and find problems right now. So, I am full of problems.

    Here's the issue:

    With Apple Zen, in IE7, if you activate a submenu under "Categories" and then move your mouse to the webpage from the submenu, when you hover over Categories again, you will get a blank part where the submenus were before. Attached is a screenshot from Jettrue's webpage that shows the problem. Any idea how to fix that?

    By the way, I am more than happy to make a contribution, Jettrue. Your template is essential for my site, and I certainly appreciate all the effort you have put into it and giving advice on this thread. Is there any way I can do so?

    Thanks!
    HI!

    Yes, that is a known issue, with no resolution... so you have to decide whether or not you can live with it...

    As far as a contribution, please read the readme, at the top there is info on that.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by srturner47 View Post
    I'm sorry. I really don't know squat about CSS. Most of what I have done has been through trial and error. I've spent about 4 hours trying to figure this out, and I just don't get it. Here is the code for the alpha sorter:


    echo '<label class="inputLabel">' . TEXT_PRODUCTS_LISTING_ALPHA_SORTER .

    I don't see anything like #sorter select in there that I could use.....

    Sorry. I am a total newb. I appreciate any help someone could provide in moving the alpha sorter to the right of the screen so that the menus don't overlap it causing a problem in IE6.

    Thanks!
    You could try .inputLabel

    Sorry for the delayed reply! Busy days....

  8. #8
    Join Date
    Oct 2006
    Location
    Hanover, PA
    Posts
    71
    Plugin Contributions
    0

    help question Re: Apple Zen Support Thread

    I have a few questions regarding the Drop Down Menu section...

    I want to put next to the drop down menus links to the pages from the "Define Pages Editor" (the 'Page 2,' Page 3,' etc.). How is this done?

    I also want to change the names of those menus (CATEGORIES to AVAILABLE for example).

    I believe those are my only questions at this time. :)
    Attached Images Attached Images  
    [FONT=Century Gothic].: Stef :.[/FONT]

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by TripleMoons View Post
    I have a few questions regarding the Drop Down Menu section...

    I want to put next to the drop down menus links to the pages from the "Define Pages Editor" (the 'Page 2,' Page 3,' etc.). How is this done?

    I also want to change the names of those menus (CATEGORIES to AVAILABLE for example).

    I believe those are my only questions at this time. :)
    Did you know that this template is setup to automatically add any pages that you setup in EZPAGES to your drop down menu? You just have to adjust a few settings, the instructions for getting EZPages into the information menu are in the readme.txt. This would be easier than getting the other pages into the drop menu.

  10. #10
    Join Date
    Sep 2007
    Posts
    11
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Dear Jade,
    Thanks for your kindly help.
    Now I have set special price for my products to let it shows two price there,but I want change a little the text organize like this:



    What can I do?
    Thank you again.
    Regards,
    Hebbe

 

 
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