Move footer content below footer menu

Hello,
When using the Footer Content area on my site, it appear above the Footer Menu. Is there a way to move the Footer Content below the Menu, or maybe add another section below the Footer Menu via the function.php file?

Thank you for your help!

Hi There,

Please make sure you are using a Child Theme:

https://theme.co/apex/child-themes

Copy wp-footer from the following folder from your X Theem:

\x\framework\legacy\cranium\footers\views*integrity*

If you are using a different stack from integrity, copy from the correspondent stack

Create the same file path on your child theme:

\x-child\framework\legacy\cranium\footers\views*integrity*

Edit wp-footer as follows:

 <?php

// =============================================================================
// VIEWS/INTEGRITY/WP-FOOTER.PHP
// -----------------------------------------------------------------------------
// Footer output for Integrity.
// =============================================================================

?>

  <?php x_get_view( 'global', '_footer', 'widget-areas' ); ?>

  <?php if ( x_get_option( 'x_footer_bottom_display' ) == '1' ) : ?>

    <footer class="x-colophon bottom" role="contentinfo">
      <div class="x-container max width">
          
         <?php if ( x_get_option( 'x_footer_content_display' ) == '1' ) : ?>
          <div class="x-colophon-content">
            <?php echo do_shortcode( x_get_option( 'x_footer_content' ) ); ?>
          </div>
        <?php endif; ?>

        <?php if ( x_get_option( 'x_footer_menu_display' ) == '1' ) : ?>
          <?php x_get_view( 'global', '_nav', 'footer' ); ?>
        <?php endif; ?>

        <?php if ( x_get_option( 'x_footer_social_display' ) == '1' ) : ?>
          <?php x_social_global(); ?>
        <?php endif; ?>

     

      </div>
    </footer>

  <?php endif; ?>

<?php x_get_view( 'global', '_footer' ); ?>

Hope it helps!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.