Hello There,
The best way to swap the footer menu above the footer text is to modify the footer template. Please remove the JS code first as it is not necessary and follow the steps below since you already your child theme installed:
1] Using Notepad or TextEdit or Sublime Text or any text editor, please create a new file in your local machine.
2] Insert the following code into that new file
<?php
// =============================================================================
// VIEWS/ICON/WP-FOOTER.PHP
// -----------------------------------------------------------------------------
// Footer output for Icon.
// =============================================================================
?>
<?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' ); ?>
3] Save the file named as wp-footer.php
4] Upload this file to your server in the child theme’s folder wp-content/themes/x-child/framework/legacy/cranium/footers/views/icon
You will need to create the folder paths because it does not exist in the child theme yet.
We would loved to know if this has work for you. Thank you.