Page 18 of 54 FirstFirst ... 8161718192028 ... LastLast
Results 171 to 180 of 535
  1. #171
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by gee38l View Post
    Fantastic Mod exactly what i was looking for....

    Just one question is it possible to add another column with the title "Products" and link to 5 or 6 of my main product categories?
    All the menu definitions are found in the footer_menu_defines.php

    You can edit and/or add what you need.

  2. #172
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    All the menu definitions are found in the footer_menu_defines.php

    You can edit and/or add what you need.
    Code:
    Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');
    Just say i want to add a category currently i have simple seo installed so my links look like this:

    /under-sink-systems-c-11

    How would i add this to the footer menu?

  3. #173
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by gee38l View Post
    Code:
    Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');
    Just say i want to add a category currently i have simple seo installed so my links look like this:

    /under-sink-systems-c-11

    How would i add this to the footer menu?
    I'd use the url from your browser address bar

  4. #174
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    I'd use the url from your browser address bar
    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

  5. #175
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by gee38l View Post
    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


    Define('CONTACT','<li><a href="http://www.truwater.com.au/under-sink-systems-c-11">YOUR_CATEGORY_NAME</a></li>');

  6. #176
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    Define('CONTACT','<li><a href="http://www.truwater.com.au/under-sink-systems-c-11">YOUR_CATEGORY_NAME</a></li>');
    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*/
    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?

  7. #177
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by gee38l View Post
    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*/
    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?
    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*/

  8. #178
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    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:

    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*/
    And

    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*/
    Still doesnt work am i doing something wrong?

  9. #179
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Make sure it is being displayed in:

    includes/templates/YOUR_TEMPLATE/common/tpl_footer_menu.php

  10. #180
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    Make sure it is being displayed in:

    includes/templates/YOUR_TEMPLATE/common/tpl_footer_menu.php
    Thanks for the replay i have finally got it to show but it looks like this:

    * Products
    * UNDER_SINK_SYSTEMS
    * COUNTERTOP_SYSTEMS
    * REPLACEMENT_FILTERS

    Also how do it get them all to be on the same line with the dotted lines?
    Last edited by gee38l; 21 Mar 2010 at 02:18 AM. Reason: Add

 

 
Page 18 of 54 FirstFirst ... 8161718192028 ... LastLast

Similar Threads

  1. v154 Flexible Footer Menu Multilingual [Support Thread]
    By rbarbour in forum All Other Contributions/Addons
    Replies: 130
    Last Post: 1 Jun 2025, 02:18 PM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  3. Category Tab Simple Dropdown Menu 1.3.9 Support Thread
    By dbltoe in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 30 Mar 2024, 06:12 PM
  4. adding links to top menu and footer menu
    By satrina in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Nov 2012, 10:17 PM
  5. Easy way to edit header/top menu, footer menu, and sidebar menu?
    By templar2 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 30 Jun 2009, 11:14 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR