Zen Cart Logo
Forums / All Other Contributions/Addons / Flexible Footer Columns Menu for 1.5.x

Flexible Footer Columns Menu for 1.5.x

Views: 24,843

Results 1 to 20 of 89
23 Aug 2013, 11:42 AM
#1
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

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).
19 Nov 2013, 9:37 PM
#3
angeltown avatar

angeltown

New Zenner

Join Date:
May 2011
Location:
Garland, Texas, United States
Posts:
27
Plugin Contributions:
0

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?

20 Nov 2013, 7:23 AM
#4
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Flexible Footer Columns Menu for 1.5.x

Angeltown:

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! :smile:

Seems I forgot to include that function :lookaroun

In /includes/modules/YOUR_TEMPLATE/flexible_footer_menu.php

find:

$page_query_list_footer[$rows]['link'] = $page_query->fields['page_url'];

replace with:

$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

30 Jan 2014, 2:38 AM
#5
gsdcypher avatar

gsdcypher

Totally Zenned

Join Date:
Feb 2007
Posts:
816
Plugin Contributions:
0

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!

30 Jan 2014, 3:16 AM
#6
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Flexible Footer Columns Menu for 1.5.x

gsdcypher:

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:

<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>

change to:

<!--<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:

<!--<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>-->

gsdcypher:

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

#flex-navSupp {display: table; width: 100%; background: #eeeeee;color:#000;}

Hope this helps!

30 Jan 2014, 4:32 AM
#7
gsdcypher avatar

gsdcypher

Totally Zenned

Join Date:
Feb 2007
Posts:
816
Plugin Contributions:
0

Re: Flexible Footer Columns Menu for 1.5.x

perfect! thx! :smile:

11 Feb 2014, 11:48 PM
#8
annie_zaz avatar

annie_zaz

Zen Follower

Join Date:
Mar 2013
Location:
Sydney, Australia
Posts:
140
Plugin Contributions:
0

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?

12 Feb 2014, 12:35 AM
#9
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Flexible Footer Columns Menu for 1.5.x

Annie_zaz:

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

19 Mar 2014, 4:42 PM
#10
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Flexible Footer Columns Menu for 1.5.x

Version: 1.1 is now available!

25 Mar 2014, 7:58 PM
#11
stxmona avatar

stxmona

Zen Follower

Join Date:
Aug 2008
Posts:
103
Plugin Contributions:
0

Re: Flexible Footer Columns Menu for 1.5.x

Is there a website that I can see a sample of this flexible footer add on? It looks like something I am looking for.
Thanks
Mona

26 Mar 2014, 8:22 AM
#12
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Flexible Footer Columns Menu for 1.5.x

stxmona:

Is there a website that I can see a sample of this flexible footer add on? It looks like something I am looking for.
Thanks
Mona

Info

Demo

26 Mar 2014, 8:23 PM
#13
fmacdonald avatar

fmacdonald

New Zenner

Join Date:
May 2010
Location:
Mont-St-Hilaire, QC, Canada
Posts:
1
Plugin Contributions:
0

Re: Flexible Footer Columns Menu for 1.5.x

Love this Zen-Cart add!! I've installed it and it works great! But, I can't figure out how to make it multilingual. It is multilingual in the admin, but when I change something in one language, it changes it in both... Thank you for your help!

27 Mar 2014, 10:13 PM
#14
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Flexible Footer Columns Menu for 1.5.x

fmacdonald:

Love this Zen-Cart add!! I've installed it and it works great! But, I can't figure out how to make it multilingual. It is multilingual in the admin, but when I change something in one language, it changes it in both... Thank you for your help!

Flexible Footer Columns Menu for 1.5.x does not support multilingual at this time.

28 Mar 2014, 12:16 AM
#15
remops avatar

remops

New Zenner

Join Date:
Mar 2014
Location:
Memphis, TN
Posts:
52
Plugin Contributions:
0

Re: Flexible Footer Columns Menu for 1.5.x

great addition!

Question how can I adjust the width to match the body of the store? I tried work with the css file but my css skills are lacking.

Thanks

28 Mar 2014, 12:43 AM
#16
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Flexible Footer Columns Menu for 1.5.x

remops:

great addition!

Question how can I adjust the width to match the body of the store? I tried work with the css file but my css skills are lacking.

Thanks

in stylesheet_flexible_footer_menu.css

find:
#flex-navSupp {display: table; width: 100%; background: #eeeeee;color:#000;}

change to:
#flex-navSupp {display: table; width: 980px; margin-left: auto; margin-right: auto; background: #eeeeee; color:#000;}

28 Mar 2014, 1:27 AM
#17
remops avatar

remops

New Zenner

Join Date:
Mar 2014
Location:
Memphis, TN
Posts:
52
Plugin Contributions:
0

Re: Flexible Footer Columns Menu for 1.5.x

rbarbour:

in stylesheet_flexible_footer_menu.css

find:
#flex-navSupp {display: table; width: 100%; background: #eeeeee;color:#000;}

change to:
#flex-navSupp {display: table; width: 980px; margin-left: auto; margin-right: auto; background: #eeeeee; color:#000;}

:laugh:That did it!!

Thank You

Any suggestions for the legal copyright that's in the footer style sheet?

28 Mar 2014, 1:56 AM
#18
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Flexible Footer Columns Menu for 1.5.x

remops:

:laugh:That did it!!

Thank You

Any suggestions for the legal copyright that's in the footer style sheet?

in stylesheet.css add:
div#siteinfoLegal.legalCopyright {display:block;width:100%; margin-left: auto; margin-right: auto;text-align: center;}

15 Apr 2014, 9:02 AM
#19
insomn1a avatar

insomn1a

New Zenner

Join Date:
Apr 2014
Posts:
2
Plugin Contributions:
0

Re: Flexible Footer Columns Menu for 1.5.x

Heyy great work. Thank you :smile:
I know this is a column menu but is it possible to add a second row?

15 Apr 2014, 4:23 PM
#20
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Flexible Footer Columns Menu for 1.5.x

insomn1a.:

Heyy great work. Thank you :smile:
I know this is a column menu but is it possible to add a second row?

It is!

I played with the CSS a little and added some ID's, SEE Demo, I don't have time right now to post changes but will do in the next few days.