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
Last edited by gee38l; 21 Mar 2010 at 02:18 AM. Reason: Add
Have to sound like one of my old grade school teachers:
go back and check your work
Code:/*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*/
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*/
Hi Clyde,
Pretty much read through the whole topic and couldn't find what I was after.
I'm not using the EZpages for links but am using it for the heading, hence having it switched on. How can I add an image below the heading 'Accepted Payments'.
www.gadgetaccessorystore.co.uk
Many thanks in advance.