All the menu definitions are found in the footer_menu_defines.php
You can edit and/or add what you need.
Printable View
Just say i want to add a category currently i have simple seo installed so my links look like this:Code:Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');
/under-sink-systems-c-11
How would i add this to the footer menu?
So if my url was http://www.truwater.com.au/under-sink-systems-c-11
I would i change that to suit the footer menu
Sorry i am still trying to learn php
I just added that code to the file just after the column 1 code but cant seem to get it to show what am i doing wrong?Code:/*OF Menu Column 2 link Definitions*/
Define('TITLE_FIVE', '<li class="menuTitle">Products</li>');
Define('CONTACT','<li><a href="http://www.truwater.com.au/under-sink-systems-c-11">UNDER_SINK_SYSTEMS</a></li>');
Define('CONTACT','<li><a href="http://www.truwater.com.au/countertop-systems-c-10">COUNTERTOP_SYSTEMS</a></li>');
Define('CONTACT','<li><a href="http://www.truwater.com.au/replacement-filters-media-c-15">REPLACEMENT_FILTERS</a></li>');
/*EOF Menu Column 2 link Definitions*/
Because you need to define the actual menu:
/*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 . '</ul></dd>');
Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR);
Define('IMPORTANT_END', '</ul></dd>');
/*EOF Footer Menu Definitions*/
This is what i have at the moment:
AndCode:/*OF Menu Column 5 link Definitions*/
Define('TITLE_FIVE', '<li class="menuTitle">Products</li>');
Define('UNDER','<li><a href="http://www.truwater.com.au/under-sink-systems-c-11">UNDER_SINK_SYSTEMS</a></li>');
Define('COUNTER','<li><a href="http://www.truwater.com.au/countertop-systems-c-10">COUNTERTOP_SYSTEMS</a></li>');
Define('REPLACEMENT','<li><a href="http://www.truwater.com.au/replacement-filters-media-c-15">REPLACEMENT_FILTERS</a></li>');
/*EOF Menu Column 5 link Definitions*/
Still doesnt work am i doing something wrong?Code:/*BOF Footer Menu Definitions*/
Define('QUICKLINKS', '<dd class="first">
<ul>' . TITLE_ONE . HOME . FEATURED . SPECIALS . NEWPRODUCTS . ALLPRODUCTS . '</ul></dd>');
Define('PRODUCTS', '<dd class="fifth">
<ul>' . TITLE_FIVE . UNDER . COUNTER . REPLACEMENT . '</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 . '</ul></dd>');
Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR);
Define('IMPORTANT_END', '</ul></dd>');
/*EOF Footer Menu Definitions*/
Make sure it is being displayed in:
includes/templates/YOUR_TEMPLATE/common/tpl_footer_menu.php