Tagged: enfold
-
AuthorPosts
-
September 26, 2018 at 10:20 am #1014630
Hi,
as the title suggests, I would like to add a second line to the footer, with the possibility of having more columns like the current footer and with the possibility of being managed by the widget area in wordpress.
I should add this line above the existing footer (see example link in private content).How can I do?
September 26, 2018 at 3:30 pm #1014789September 26, 2018 at 4:51 pm #1014868Hi,
Thanks for the solution but does not meet my needs, as this second row of the footer should only be displayed on some pages and not always on the whole site.
Are there any other options to add a second row in the footer and be able to be viewed only on some pages / posts?
Thanks
September 26, 2018 at 5:29 pm #1014882you can insert before or after normal footer widget area !
use these hooks in child-theme functions.php
add_action( 'avia_before_footer_columns', 'enfold_over_footer_widget_area' ); function enfold_over_footer_widget_area() { dynamic_sidebar( 'before-footer' ); } add_action( 'avia_after_footer_columns', 'enfold_under_footer_widget_area' ); function enfold_under_footer_widget_area() { dynamic_sidebar( 'after-footer' ); }
then goto widget area and create new widget areas called: either before-footer or after-footer
you can then pull in these new widget areas some shortcodes like:[av_one_half first] [av_heading heading='Left Heading' tag='h3' style='blockquote modern-quote' ][/av_heading] [av_textblock ] Left 1/2 Content [/av_textblock] [/av_one_half] [av_one_half ] [av_heading heading='Right Heading' tag='h3' style='blockquote modern-quote' ][/av_heading] [av_textblock ] Right 1/2 Content [/av_textblock] [/av_one_half]
see results here on my test page: https://webers-testseite.de/
little tip: restrict widget
you can set on widget area where to show ( or if it is less work where not to show the widgetSeptember 26, 2018 at 5:46 pm #1014893Hi @guenni007,
Thank you, you solved my problem!
September 26, 2018 at 5:47 pm #1014894Hey leos,
I’m glad you were able to get this resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan ShannonSeptember 26, 2018 at 7:02 pm #1014923i open a new topic for interesting people soon …
for those who misunderstand the topic too – like me. https://kriesi.at/support/topic/second-widget-line-in-footer/- This reply was modified 6 years, 2 months ago by Guenni007.
-
AuthorPosts
- You must be logged in to reply to this topic.