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.
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.
Re: Footer Menu Support Thread
Quote:
Originally Posted by
autoace
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!
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.
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.
Re: Footer Menu Support Thread
Quote:
Originally Posted by
autoace
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..
Re: Footer Menu Support Thread
Quote:
Originally Posted by
autoace
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>');
Re: Footer Menu Support Thread
Quote:
Originally Posted by
clydejones
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>');
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
Re: Footer Menu Support Thread
Quote:
Originally Posted by
gsdcypher
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?