
Originally Posted by
autoace
Hi Clyde,
In the case of the EZ Pages creating the links, I want 3 of the 4 columns to be based on EZ Pages.
Do I need to do anything to the footer_menu_defines.php file? I see that is set up for only 1 column of EZPages links.
Can you please advise, thanks for your help.
In that case, you're going to have to roll up your sleeves and work on the footer_menu_defines.php file.
each of the columns is defined in its own section.
I'll use column three for this example. All these links use Zen Cart pages.
PHP 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>');
/*EOF Menu Column 3 link Definitions*/
You can change the define statements to your liking:
change the constant If you wish.
Since I'm not sure whether you will be using internal or external links, I'll use external links.
Define('CONDITIONS','<li><a href=" http://your_link.com">this is my link</a></li>');
Now You'll need to make sure that you include any changes to the constants appear in the "footer menu defines
Define('CUSTOMER_SERVICE', '<dd class="third">
<ul>' . TITLE_THREE . CONTACT . SHIPPING . PRIVACY . CONDITIONS . ACCOUNT . '</ul></dd>');
Bookmarks