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 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.

  2. #2
    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

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

    help question Re: Apple Zen Support Thread

    My 3rd-level subcategories are displaying weird. Is this something to do with the template?
    See http://www.ilasco.co.uk and select GEAR > POLICE > and then click on SPECIALIST UNITS.
    The layout one level up [eg. when you click on Police] is fine

  4. #4
    Join Date
    Nov 2007
    Posts
    2
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Thank you... I got it to install... I knew I was missing something simple....

  5. #5
    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
    My 3rd-level subcategories are displaying weird. Is this something to do with the template?
    See http://www.ilasco.co.uk and select GEAR > POLICE > and then click on SPECIALIST UNITS.
    The layout one level up [eg. when you click on Police] is fine
    Its because of the category image. I'd turn it off under "Configuration", "Product Listing", "Include Product Listing Sub Categories Image".

    Or, includes/templates/YOUR_TEMPLATE/templates/tpl_index_categories.php, and add

    Code:
    <br class="clearBoth" />
    after

    Code:
    <div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES . $categories_image, '', SUBCATEGORY_IMAGE_TOP_WIDTH, SUBCATEGORY_IMAGE_TOP_HEIGHT); ?></div>

  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 hebbe View Post
    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
    As far as getting the "Our Price" in there, you can add it in includes/templates/YOUR_TEMPLATE/template/tpl_product_info_display.php by changing this:

    Code:
      echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);

    to this:

    Code:
      echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : 'Our Price: ') . zen_get_products_display_price((int)$_GET['products_id']);

    But as far as getting rid of the percentage off and such, I'd start a new thread about that in the general forum.

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    As far as getting the "Our Price" in there, you can add it in includes/templates/YOUR_TEMPLATE/template/tpl_product_info_display.php by changing this:

    Code:
      echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);

    to this:

    Code:
      echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : 'Our Price: ') . zen_get_products_display_price((int)$_GET['products_id']);

    But as far as getting rid of the percentage off and such, I'd start a new thread about that in the general forum.


    Dear Jade,
    Thank you for your kindly help.
    Now I start a new thread adress is :
    http://www.zen-cart.com/forum/showth...065#post458065
    Please go there and help me~
    Thank you again.
    Regards,
    Hebbe

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

    help question Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    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.
    Thanks for the reply. :)

    I don't want the EZPages to show up under the Information menu. I have a specific page structure that I need to follow for the pages, which is why I need JUST certain pages to show up in the menu bar.

    Example:

    Collection --> Ball Pythons | Boa Constrictors | Cornsnakes | Crested Geckos
    [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
    Thanks for the reply. :)

    I don't want the EZPages to show up under the Information menu. I have a specific page structure that I need to follow for the pages, which is why I need JUST certain pages to show up in the menu bar.

    Example:

    Collection --> Ball Pythons | Boa Constrictors | Cornsnakes | Crested Geckos
    If you're saying that you want them added at the top, next to your category drop down, Then you need to open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and add those pages manually, following the menu format. However, realize that you really can't add many drop down menu items without running out of room.

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

    Have a Drink Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    If you're saying that you want them added at the top, next to your category drop down, Then you need to open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and add those pages manually, following the menu format. However, realize that you really can't add many drop down menu items without running out of room.
    Thanks for the reply. :)

    I actually made my own solution by putting links where the header search is normally. Works pretty good I think. :)
    [FONT=Century Gothic].: Stef :.[/FONT]

 

 
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