Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #854415

    shaunatk
    Participant

    website is http://www.southwestohiohomeinspections.com

    I want my footer menu to be above the social media icons. How do I do that?

    #854573

    Lely
    Moderator

    Hi There,

    Thanks for posting in.
    Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.

    Then copy the file wp-footer.php from your-wordpress-folder\wp-content\themes\x\framework\views\renew to this folder your-wordpress-folder\wp-content\themes\x-child\framework\views\renew. Open the copied file and then replace the entire content with the following:

    
    <?php
    
    // =============================================================================
    // VIEWS/RENEW/WP-FOOTER.PHP
    // -----------------------------------------------------------------------------
    // Footer output for Renew.
    // =============================================================================
    
    ?>
    
      <?php x_get_view( 'global', '_header', 'widget-areas' ); ?>
      <?php x_get_view( 'global', '_footer', 'scroll-top' ); ?>
      <?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_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; ?>
    
            <?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; ?>
    
          </div>
        </footer>
    
      <?php endif; ?>
    
    <?php x_get_view( 'global', '_footer' ); ?>

    Hope this helps.

    #854921

    shaunatk
    Participant

    Beautiful. Thank you for your help.

    #854923

    Zeshan
    Member

    You’re welcome! 🙂