Page 1 of 9 123 ... LastLast
Results 1 to 10 of 89
  1. #1
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Flexible Footer Columns Menu for 1.5.x

    Being uploaded today!

    If you are familiar with the Ezpages Footer Columns plugin and it's great functions, then I think you'll love this!

    With Footer Columns Menu, You Can:

    * Choose how many columns to have (up to 9).
    * Define a heading for each column (it may be text, hypertext, an image or linkable image).
    * Define one or multiple subheadings in each column (it may be text, hypertext, an image or linkable image).
    * Define text/comment or multiple text/comments in each column (Accepts HTML).
    * Define external URL's (hypertext or linkable image).

    Want to know the best parts:

    * Not dependent on ezpages.
    * Can be used with the ezpages footer bar.
    * 100% (Yes 100%) admin controlled (no external define files).
    * Content column placement is 100% sort order controlled (which means anything can go below/above anything).
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  2. #2
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Flexible Footer Columns Menu for 1.5.x

    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  3. #3
    Join Date
    May 2011
    Location
    Garland, Texas, United States
    Posts
    27
    Plugin Contributions
    0

    Default Re: Flexible Footer Columns Menu for 1.5.x

    LOVE this contribution - thank you so much!

    Quick question regarding this :
    EXTERNAL link URL Example: http://www.zcadditions.com (http://) strips INTERNAL link URL and auto opens in new tab/window.
    I'm using external (http://) links for a few but they do not open in a new window (target="_blank" is not part of the html generated). Any way to fix this?

  4. #4
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Flexible Footer Columns Menu for 1.5.x

    Quote Originally Posted by Angeltown View Post
    LOVE this contribution - thank you so much!

    Quick question regarding this :
    I'm using external (http://) links for a few but they do not open in a new window (target="_blank" is not part of the html generated). Any way to fix this?
    I am glad you found this contribution useful!

    Seems I forgot to include that function

    In /includes/modules/YOUR_TEMPLATE/flexible_footer_menu.php

    find:
    PHP Code:
    $page_query_list_footer[$rows]['link'] = $page_query->fields['page_url']; 
    replace with:
    PHP Code:
    $URL $page_query->fields['page_url'];

    if(
    strpos($URL"http://") !== false) {
          
    $page_query_list_footer[$rows]['link'] = $URL '" target="_blank ';
        } else {
          
    $page_query_list_footer[$rows]['link'] = $URL;
        } 
    I will update the master for it's next release, I also plan to make this (open link in new window) an option for internal and external links in the next release.

    Ray
    Last edited by rbarbour; 20 Nov 2013 at 08:25 AM.
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  5. #5
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Flexible Footer Columns Menu for 1.5.x

    hello. i just started "playing" with the flexible footer... i have a row the rests on top of the flexible footer columns with the word "home" centered in the row that when clicked, takes me back up to the top of the page. how do i remove that row and the home link?

    also, how do i add a gray line to the bottom of the flexible footer columns (just like the top) to "box it off"?

    thx!

  6. #6
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Flexible Footer Columns Menu for 1.5.x

    Quote Originally Posted by gsdcypher View Post
    hello. i just started "playing" with the flexible footer... i have a row the rests on top of the flexible footer columns with the word "home" centered in the row that when clicked, takes me back up to the top of the page. how do i remove that row and the home link?
    That link is hard coded by default in the stock code.

    open:
    /includes/templates/YOUR_TEMPLATE_NAME/common/tpl_footer.php

    find:
    PHP Code:
    <li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>
    change to:
    PHP Code:
    <!--<li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>-->
    if you are not using ez-pages footer bar, you can comment out the entire block of code like so:
    PHP Code:
    <!--<ul>
    <li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>
    <?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE$_SERVER['REMOTE_ADDR'])))) { ?>
    <li><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE$current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?></li>
    <?php ?>
    </ul>-->

    Quote Originally Posted by gsdcypher View Post
    also, how do i add a gray line to the bottom of the flexible footer columns (just like the top) to "box it off"?

    thx!
    The wrapper to style flexible footer columns is
    Code:
    #flex-navSupp {display: table; width: 100%; background: #eeeeee;color:#000;}
    Hope this helps!

  7. #7
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Flexible Footer Columns Menu for 1.5.x

    perfect! thx!

  8. #8
    Join Date
    Mar 2013
    Location
    Sydney, Australia
    Posts
    140
    Plugin Contributions
    0

    Default Re: Flexible Footer Columns Menu for 1.5.x

    Hello,
    I have installed the files for flexible footer menu. My webpage reflects the changes but when I go to admin>tool there is no Flexible Footer Menu 7 listed. So am wondering how to edit the footer text?

  9. #9
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Flexible Footer Columns Menu for 1.5.x

    Quote Originally Posted by Annie_zaz View Post
    Hello,
    I have installed the files for flexible footer menu. My webpage reflects the changes but when I go to admin>tool there is no Flexible Footer Menu 7 listed. So am wondering how to edit the footer text?
    admin > Tools > Flexible Footer Menu

    If it isn't their, reinstall the YOUR_ADMIN_FOLDER files
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  10. #10
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Flexible Footer Columns Menu for 1.5.x

    Version: 1.1 is now available!
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

 

 
Page 1 of 9 123 ... LastLast

Similar Threads

  1. v154 Flexible Footer Menu Multilingual [Support Thread]
    By rbarbour in forum All Other Contributions/Addons
    Replies: 128
    Last Post: 6 Sep 2023, 10:30 PM
  2. v155 Winchester Black responsive - looking for Social media icon flexible footer fix
    By MattA66 in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 8 Jun 2021, 05:34 PM
  3. v155 Flexible Footer Menu
    By MCS_Computers in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 9 Jul 2018, 10:59 AM
  4. Replies: 8
    Last Post: 22 Nov 2016, 05:22 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