Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #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?

    #1014789

    Hey leos,

    Well, you can build a page and use it as a footer in the theme options
    Image 2018-09-26 at 16.30.32.png

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1014868

    Hi,

    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

    #1014882

    you 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 widget

    #1014893

    Hi @guenni007,

    Thank you, you solved my problem!

    #1014894

    Hey 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 Shannon

    #1014923

    i 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.
Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.