Page 9 of 54 FirstFirst ... 789101119 ... LastLast
Results 81 to 90 of 535
  1. #81
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    It appears that the file is corrupted; either when you uploaded it or when you unziped the package.

    try uploading a clean copy of the file.

  2. #82
    Join Date
    Jun 2009
    Posts
    617
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Hi Clyde:

    I would like to make the 4th column a NON-EZPAGE column. What do I need to do? Thanks in advance.
    Thank you,
    autoace

  3. #83
    Join Date
    Jun 2009
    Posts
    617
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by autoace View Post
    Hi Clyde:

    I would like to make the 4th column a NON-EZPAGE column. What do I need to do? Thanks in advance.
    Nevermind, I did it!
    Thank you,
    autoace

  4. #84
    Join Date
    Jun 2009
    Posts
    617
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    BTW - If anyone wants to know how I did it just PM me. I do not think it is right of me to post what I did because this is not my mod.
    Thank you,
    autoace

  5. #85
    Join Date
    Jun 2009
    Posts
    617
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Hi Clyde,

    I am trying to apply the html name attribute for links in the footer_menu_defines file with no success

    In an effort to cut down on non-product pages, I have combined all of my policies to the 2 pages that comes standard with ZC, conditions and privacy. For instance, I placed my returns policy on the same page as my TOS. I need to provide a link that takes the customer to the returns section on the conditions page.

    I have tried this:
    Define('RETURNS', '<li><a href="'http://www.mydomain.com/index.php?main_page=conditions#returns'");
    but it just gets commented out when you add '//' or '#' in the url.

    and this:
    Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS#returns . '</a></li>');
    but again the '#' just comments it all out.

    Is there another way of doing it that works? Any help is greatly appreciated.
    Last edited by autoace; 3 Dec 2009 at 03:31 PM. Reason: code
    Thank you,
    autoace

  6. #86
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by autoace View Post
    BTW - If anyone wants to know how I did it just PM me. I do not think it is right of me to post what I did because this is not my mod.
    People share ideas of how they use or modify mods all the time.. It's how the community shares and learns.. and sometimes some ideas make their way into mods.. I do not think Clyde will mind at all if you share how you have used his excellent contribution..

  7. #87
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by autoace View Post
    Hi Clyde,

    I am trying to apply the html name attribute for links in the footer_menu_defines file with no success

    In an effort to cut down on non-product pages, I have combined all of my policies to the 2 pages that comes standard with ZC, conditions and privacy. For instance, I placed my returns policy on the same page as my TOS. I need to provide a link that takes the customer to the returns section on the conditions page.

    I have tried this:
    Define('RETURNS', '<li><a href="'http://www.mydomain.com/index.php?main_page=conditions#returns'");
    but it just gets commented out when you add '//' or '#' in the url.

    and this:
    Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS#returns . '</a></li>');
    but again the '#' just comments it all out.

    Is there another way of doing it that works? Any help is greatly appreciated.
    I haven't tired this but maybe you can use something similiar to the way includes/languages/english/gv_faq.php is set up.

    I believe that you'll need to set up the case statements on your conditions page.

    Then do the define statements in includes/languages/english/extra_definitions/YOUR_TEMPLATE/footer_menu_defines.php
    something like this:

    Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS,'faq_item=1','NONSSL') . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');
    Define('RETURNS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS,'faq_item=2','NONSSL') . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');

  8. #88
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    I haven't tired this but maybe you can use something similiar to the way includes/languages/english/gv_faq.php is set up.

    I believe that you'll need to set up the case statements on your conditions page.

    Then do the define statements in includes/languages/english/extra_definitions/YOUR_TEMPLATE/footer_menu_defines.php
    something like this:

    Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS,'faq_item=1','NONSSL') . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');
    Define('RETURNS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS,'faq_item=2','NONSSL') . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');
    If the above doesn't work you could also try the following:


    Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS .'#returns') . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');

  9. #89
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    great module. got it working in ff and chrome. but in ie there is a blank white box at the bottom of the page (under the siteinfolegal link). it appears only in ie. tried everything to get rid of it. any ideas?

    thanks

  10. #90
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by gsdcypher View Post
    great module. got it working in ff and chrome. but in ie there is a blank white box at the bottom of the page (under the siteinfolegal link). it appears only in ie. tried everything to get rid of it. any ideas?

    thanks
    not without see what you're talking about.

    URL for your site?

 

 
Page 9 of 54 FirstFirst ... 789101119 ... LastLast

Similar Threads

  1. v154 Flexible Footer Menu Multilingual [Support Thread]
    By rbarbour in forum All Other Contributions/Addons
    Replies: 130
    Last Post: 1 Jun 2025, 02:18 PM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  3. Category Tab Simple Dropdown Menu 1.3.9 Support Thread
    By dbltoe in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 30 Mar 2024, 06:12 PM
  4. adding links to top menu and footer menu
    By satrina in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Nov 2012, 10:17 PM
  5. Easy way to edit header/top menu, footer menu, and sidebar menu?
    By templar2 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 30 Jun 2009, 11:14 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