Moving the footer content under the footer nav

Hi there,

How do I move the footer content under the footer nav, it feels out of place above the nav cause I would like to use it for author information and admin linking.

Here is my site where you can check it out:

Thx for the help,

John

Hi John,

To achieve that, you need to set-up child theme

Then create file wp-footer.php in wp-content/themes/x-child/framework/legacy/cranium/footers/views/ethos
and copy the code below into that file.

<?php

// =============================================================================
// VIEWS/ETHOS/WP-FOOTER.PHP
// -----------------------------------------------------------------------------
// Footer output for Ethos.
// =============================================================================

?>

  <?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_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_social_display' ) == '1' ) : ?>
          <?php x_social_global(); ?>
        <?php endif; ?>

      </div>
    </footer>

  <?php endif; ?>

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

Please note that you need to create this folders in your child theme.

legacy/cranium/footers/views/ethos

Hope that helps.

I don’t have the directory x-child directory

You will have to install the child theme for you to have the x-child directory.

Please go over the link previously suggested:

Hope this helps.

I got it, and could I add my voice to the idea that this be your default layout. I feel like having the sub-text at the bottom for authors and adimin links is a better place for it.

Thank you for the suggestion.

I have added this request in our feature list so that it will be considered in the future development.

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