Tagged: x
-
AuthorPosts
-
October 17, 2016 at 3:14 pm #1219824
JohnParticipantIs there a way to place the footer menu over the top of the custom X content (that I’m using for authoring link). I’m working on this site:
http://www.fellowship.johncliffordtaylor.com
So what I would really like is to have the social icons, then the menu, and then at the very bottom would be the links to the authoring websites.
Thanks a lot!
John
October 17, 2016 at 5:41 pm #1219967
JadeModeratorHi John,
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 /wp-content/themes/x/framework/views/icon and add it in /wp-content/themes/x-child/framework/views/icon then replace the code in the file to this:
<?php // ============================================================================= // VIEWS/ICON/WP-FOOTER.PHP // ----------------------------------------------------------------------------- // Footer output for Icon. // ============================================================================= ?> <?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_social_display' ) == '1' ) : ?> <?php x_social_global(); ?> <?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_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.
October 19, 2016 at 11:53 am #1222532
JohnParticipantWorked like a charm, and If I may put my 2 cents in I think this configuration that I’m asking for should be the out of the box setup.
October 19, 2016 at 1:30 pm #1222680
RupokMemberGlad that it worked for you. And of course we appreciate your feedback and always count as you know.
Have a nice day!
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1219824 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
