Re: Footer Menu Support Thread
Quote:
Originally Posted by
jfreeman
Hi there - I have a questions - I've added a new item called "RETURNS" under the Customer Service footer column - however it doesn't show up after adding it. I don't receive any errors, I can add it to the left side Information box and the link works correctly. Is there something defining only 5 items??
Here is my code:
/*BOF Menu Column 3 link Definitions*/
Define('TITLE_THREE', '<li class="menuTitle">Customer Service</li>');
Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');
Define('SHIPPING', '<li><a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a></li>');
Define('PRIVACY', '<li><a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a></li>');
Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');
Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>');
Define('RETURNS', '<li><a href="' . zen_href_link(FILENAME_RETURNS, '', 'SSL') .'">' . BOX_INFORMATION_RETURNS . '</a></li>');/*EOF Menu Column 3 link Definitions*/
You also need to add the definition to the last section
/*BOF Footer Menu Definitions*/
Define('QUICKLINKS', '<dd class="first">
<ul>' . TITLE_ONE . HOME . FEATURED . SPECIALS . NEWPRODUCTS . ALLPRODUCTS . '</ul></dd>');
Define('INFORMATION', '<dd class="second">
<ul>' . TITLE_TWO . ABOUT . SITEMAP . GVFAQ . COUPON . UNSUBSCRIBE . '</ul></dd>');
Define('CUSTOMER_SERVICE', '<dd class="third">
<ul>' . TITLE_THREE . CONTACT . SHIPPING . PRIVACY . CONDITIONS . ACCOUNT . RETURNS . '</ul></dd>');
Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR);
Define('IMPORTANT_END', '</ul></dd>');
/*EOF Footer Menu Definitions*/
Re: Footer Menu Support Thread
Thank you so much - I've been trying to find the solution for three days now. Jeff
Re: Footer Menu Support Thread
Hi there - I got the Returns item to show up with the information that you helped me with - but instead of showing the word Returns under Customer Serice it displays: BOX_INFORMATION_RETURNS I must be missing a define some place.
Here is my website:www.vintagecollectionsonline.com
Thanks for any help, Jeff
Re: Footer Menu Support Thread
Quote:
Originally Posted by
jfreeman
Hi there - I got the Returns item to show up with the information that you helped me with - but instead of showing the word Returns under Customer Serice it displays: BOX_INFORMATION_RETURNS I must be missing a define some place.
Here is my website:
www.vintagecollectionsonline.com
Thanks for any help, Jeff
make sure you have uploaded ALL of the following folders/files
includes/extra_datafiles/returns_filenames.php
includes/languages/english/extra_definitions/YOUR_TEMPLATE/returns_defines.php
includes/languages/english/YOUR_TEMPLATE/returns.php
includes/languages/english/html_includes/define_returns.php
includes/languages/english/html_includes/YOUR_TEMPLATE/define_returns.php
includes/modules/pages/returns
includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php
includes/templates/YOUR_TEMPLATE/css/returns.css
Re: Footer Menu Support Thread
Hi there,
Yeah I've checked all those and they are as you stated. Funny thing is the left side Information Box - has the Returns in it and it works fine which goes to the returns screen.
Can I show you any code of mine?
Thanks for being so responsive. Jeff
Re: Footer Menu Support Thread
Quote:
Originally Posted by
jfreeman
Hi there,
Yeah I've checked all those and they are as you stated. Funny thing is the left side Information Box - has the Returns in it and it works fine which goes to the returns screen.
Can I show you any code of mine?
Thanks for being so responsive. Jeff
You could try adding the following to includes/languges/YOUR_TEMPLATE/english.php
define('BOX_INFORMATION_RETURNS', 'Returns');
Re: Footer Menu Support Thread
Yes it worked!! Thank you so much!:clap:
Re: Footer Menu Support Thread
Quote:
Originally Posted by
jfreeman
Yes it worked!! Thank you so much!:clap:
glad you got it sorted
Re: Footer Menu Support Thread
Excellent add-on. Thank you!
I do have one question, however. How can I remove the legal and "Powered by Zen Cart" from the footer? When I change the background color in the footer CSS file, I want the legal and "Powered by Zen Cart" to stay the color of the main page's background color.
Re: Footer Menu Support Thread
Quote:
Originally Posted by
mretzloff
Excellent add-on. Thank you!
I do have one question, however. How can I remove the legal and "Powered by Zen Cart" from the footer? When I change the background color in the footer CSS file, I want the legal and "Powered by Zen Cart" to stay the color of the main page's background color.
Link to your site?