[Resolved] Is it possible to make the Footer Widgets display after the Footer Bar?

Home Forums Support [Resolved] Is it possible to make the Footer Widgets display after the Footer Bar?

Home Forums Support Is it possible to make the Footer Widgets display after the Footer Bar?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1524223
    Ben

    Hi,

    I’m keen to have the footer bar display before the widget columns. I.e. swap the order of the footer sections.

    Is it possible with a filter?

    Ben

    #1524310
    Leo
    Staff
    Customer Support

    Hi there,

    Try this:

    add_action( 'after_setup_theme', function() {
        remove_action( 'generate_footer','generate_construct_footer', 10 );
        add_action( 'generate_footer','generate_construct_footer', 2 );
    } );

    Adding PHP: https://docs.generatepress.com/article/adding-php/

    #1524466
    Ben

    Many thanks Leo.

    #1524550
    Leo
    Staff
    Customer Support

    No problem 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.