Results 1 to 10 of 3041

Hybrid View

  1. #1
    Join Date
    Sep 2006
    Location
    Oregon
    Posts
    217
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Wow... I am at my wits end with trying to figure out some things in apple zen with it's drop down menu! I really need some help!

    I have the drop down menu in the header and I would like to get rid of the following: (I have tried and tried to no avail)

    1. About us
    2. Discount Coupons
    3. Gift Certificates
    4. Specials
    5. New products

    I also cannot get the site map to go away!

    www.photographysisters.com

    Thank you

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by debtag View Post
    Wow... I am at my wits end with trying to figure out some things in apple zen with it's drop down menu! I really need some help!

    I have the drop down menu in the header and I would like to get rid of the following: (I have tried and tried to no avail)

    1. About us
    2. Discount Coupons
    3. Gift Certificates
    4. Specials
    5. New products

    I also cannot get the site map to go away!

    www.photographysisters.com

    Thank you
    You can remove About us in includes/templates/apple_zen/common/tpl_drop_menu.php, just remove it:

    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_ABOUT_US); ?>"><?php echo HEADER_TITLE_ABOUT_US; ?></a></li>
    2. If you want coupons off for the whole site, go to "Modules", "Order Total", and disable the discount coupon module. If you want it off for only the drop menu, remove it from tpl_drop_menu.php:
    Code:
    <?php if (MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_DISCOUNT_COUPON, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_DISCOUNT_COUPON; ?></a></li>
                    <?php } ?>
    3. If you want gift certificates off, do the same thing as #2. If you want it off only for the drop menu, remove this chunk:
    Code:
    <?php if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_GV_FAQ, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_GV_FAQ; ?></a></li>
                    <?php } ?>
    4. If you specials off for the whole site, go to the tpl_drop_menu.php again, and remove it:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_SPECIALS); ?>"><?php echo HEADER_TITLE_SPECIALS; ?></a></li>
    5. Same as #4, but remove this chunk:
    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_NEW); ?>"><?php echo HEADER_TITLE_NEW_PRODUCTS; ?></a></li>
    If you'd like the Site Map off for the entire site, Go to your admin, to "Configuration", "Define Page Status", and turn the site map off. If you want it off for the drop menu only, remove it from tpl_drop_menu.php:

    Code:
    <?php if (DEFINE_SITE_MAP_STATUS <= 1) { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
                    <?php } ?>

  3. #3
    Join Date
    Sep 2006
    Location
    Oregon
    Posts
    217
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Thank you so much for helping me!!!!!!!!!!!!!!!!!!!!
    I am thrilled beyond belief!
    Everything worked except getting rid of SITE MAP! I totally removed:

    <?php if (DEFINE_SITE_MAP_STATUS <= 1) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
    <?php } ?>

    from my tpl_drop_menu.php file and also in my admin, site map status is set to 3.....it's so annoying!

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by debtag View Post
    Thank you so much for helping me!!!!!!!!!!!!!!!!!!!!
    I am thrilled beyond belief!
    Everything worked except getting rid of SITE MAP! I totally removed:

    <?php if (DEFINE_SITE_MAP_STATUS <= 1) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
    <?php } ?>

    from my tpl_drop_menu.php file and also in my admin, site map status is set to 3.....it's so annoying!
    The site map link is no longer in the drop down menu, that is what removing the code above accomplishes. Now, did you notice that you are LINKING TO the sitemap on your home page.... the "GALLERY" link is pointing to the sitemap page:

    http://photographysisters.com/index...._page=site_map

  5. #5
    Join Date
    Sep 2006
    Location
    Oregon
    Posts
    217
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Ok...you are on to something I'm sure, but in my ignorance of knowing how to edit Zencart, I'm not sure what I need to do. Hopefully I can explain this to you....

    The 'GALLERY' link on the ZENCART page was originally the 'CATEGORIES' link and all I did was change the name from categories to gallery. The site map appears every time you click on the GALLERY link as well as when you enter into Zencart from my html page.

    So...how do I then remove the link to the site map page? If you will also notice...I turned off SPECIALS and NEW PRODUCTS so they don't appear in my drop down box, but they are showing up on the site map.

    Thanks Jettrue....I'm sorry if I seem to dumb, but truth is...I guess I am when it comes to this!

  6. #6
    Join Date
    Sep 2006
    Location
    Oregon
    Posts
    217
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Ok, I changed the link from my Html page to Zencart. I didn't realize the "sitemap" connection. When I built the html page I just went and copied the url from the top of the page and pasted it in to the html page...so the big question remains, how do I get rid of the site map page to the GALLERY link (other wise know as the categories link)?

  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 debtag View Post
    Ok, I changed the link from my Html page to Zencart. I didn't realize the "sitemap" connection. When I built the html page I just went and copied the url from the top of the page and pasted it in to the html page...so the big question remains, how do I get rid of the site map page to the GALLERY link (other wise know as the categories link)?
    Open up includes/templates/apple_zen/common/tpl_drop_menu.php and remove the link there.

 

 

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