Move social icons below footer content

Is there a way to move the social footer icons below the footer content section?
Hoping to avoid a ton of manual code to add the social items in the footer content.

Hi @headmetal,

Thank you for reaching out. To move the social icons below the footer content, (I believe you’re using Integrity stack) first create a new empty file and name it as wp-footer.php then copy and paste the following code inside:

<?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_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' ); ?>

Using FTP upload the file to your child theme in the /x-child/framework/legacy/cranium/footers/views/integrity directory if you don’t find those folders inside then create those to match the directory path /x-child/framework/legacy/cranium/footers/views/integrity

Hope this helps!

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