Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1219954
    nimnav
    Participant

    Hello,

    Please take a look at: http://oddarchitects.com

    You will see a logo just before rights reserved in the footer. in footer content.

    But I want the logo on top of the footer menu, so before anything else.
    How can I go about doing that?

    Best,
    Nima

    #1220012
    Jade
    Moderator

    Hi Nima,

    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/integrity and add it in /wp-content/themes/x-child/framework/views/integrity then replace the code in the file to this:

    <?php
    
    // =============================================================================
    // VIEWS/INTEGRITY/WP-FOOTER.PHP
    // -----------------------------------------------------------------------------
    // Footer output for Integrity.
    // =============================================================================
    
    ?>
    
      <?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_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; ?>
    
            <?php if ( x_get_option( 'x_footer_menu_display' ) == '1' ) : ?>
              <?php x_get_view( 'global', '_nav', 'footer' ); ?>
            <?php endif; ?>     
    
          </div>
        </footer>
    
      <?php endif; ?>
    
    <?php x_get_view( 'global', '_footer' ); ?>

    Hope this helps.

  • <script> jQuery(function($){ $("#no-reply-1219954 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>