Title: Two Header Logos
Last modified: June 22, 2019

---

# Two Header Logos

 *  Resolved [rbarron](https://wordpress.org/support/users/rbarron/)
 * (@rbarron)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/)
 * Seeking assistance to determine how I ended up with 2 logos in the header for
   this site. I’ve checked and compared to other sites, at a loss as to how to resolve.
   Appreciate any assistance you’re able to provide.
 * Thank you …. Rick
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ftwo-header-logos%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 9 replies - 1 through 9 (of 9 total)

 *  [Rajesh – ThemeGrill Support](https://wordpress.org/support/users/rajeshpoudel/)
 * (@rajeshpoudel)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/#post-11665466)
 * Hi,
 * It seems you are using a child theme, so the custom logo might have been duplicated
   from the child theme. Can you switch to the parent theme and check if the issue
   still persists? If the issue only exists in the child theme, can you check the
   code in the child theme and manage accordingly?
 * For the workaround to hide the second logo, you can also go to the **Appearance
   > Customize > Additional CSS** in the dashboard and insert the code mentioned
   below:
 *     ```
       .page-id-2 .custom-logo-link{
       	display: none;
       }
       ```
   
 * Thanks.
 *  Thread Starter [rbarron](https://wordpress.org/support/users/rbarron/)
 * (@rbarron)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/#post-11666973)
 * Thank you for the prompt reply Rajesh. The site has many sub-domains all using
   child themes. This is the only one with the double icon. Which code do you suggest
   checking/reviewing in the child theme?
 * Thank you …. Rick
 *  Thread Starter [rbarron](https://wordpress.org/support/users/rbarron/)
 * (@rbarron)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/#post-11666999)
 * I switched to Spacious and received the following warnings:
 * Warning: array_merge(): Argument #3 is not an array in /home1/eaglehb/public_html/
   barronsplace.com/wp-includes/widgets.php on line 1211
 * Warning: array_diff(): Argument #2 is not an array in /home1/eaglehb/public_html/
   barronsplace.com/wp-includes/widgets.php on line 1212
 * Warning: Invalid argument supplied for foreach() in /home1/eaglehb/public_html/
   barronsplace.com/wp-includes/widgets.php on line 1214
 * Warning: array_merge(): Argument #1 is not an array in /home1/eaglehb/public_html/
   barronsplace.com/wp-includes/widgets.php on line 1222
 * Warning: Cannot modify header information – headers already sent by (output started
   at /home1/eaglehb/public_html/barronsplace.com/wp-includes/widgets.php:1211) 
   in /home1/eaglehb/public_html/barronsplace.com/wp-admin/includes/misc.php on 
   line 1196
 * Warning: Cannot modify header information – headers already sent by (output started
   at /home1/eaglehb/public_html/barronsplace.com/wp-includes/widgets.php:1211) 
   in /home1/eaglehb/public_html/barronsplace.com/wp-includes/pluggable.php on line
   1251
 * Warning: Cannot modify header information – headers already sent by (output started
   at /home1/eaglehb/public_html/barronsplace.com/wp-includes/widgets.php:1211) 
   in /home1/eaglehb/public_html/barronsplace.com/wp-includes/pluggable.php on line
   1254
 * I get the same when returning to the child theme.
 *  Thread Starter [rbarron](https://wordpress.org/support/users/rbarron/)
 * (@rbarron)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/#post-11667127)
 * Warnings have disappeared. I used the custom CSS to hide the 2nd logo.
 * Thank you …. Rick
 *  [alanaj7](https://wordpress.org/support/users/alanaj7/)
 * (@alanaj7)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/#post-11672140)
 * Hi Rick. What did you do to get your footer with only the copyright and then 
   page navigation to the far right?
 * Thank you
 *  [Rajesh – ThemeGrill Support](https://wordpress.org/support/users/rajeshpoudel/)
 * (@rajeshpoudel)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/#post-11672697)
 * Hi [@rbarron](https://wordpress.org/support/users/rbarron/),
 * Glad to know it worked. Feel free to ask again if you get any issue regarding
   the theme. If you liked this theme, you can help us by leaving a review
 * Thanks.
 *  [Rajesh – ThemeGrill Support](https://wordpress.org/support/users/rajeshpoudel/)
 * (@rajeshpoudel)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/#post-11672715)
 * Hi [@alanaj7](https://wordpress.org/support/users/alanaj7/),
 * For showing the footer with only copyright, you can obtain so with the help of
   a child theme. In the child theme, you need to override the code related to the
   copyright section.
    For showing the footer menu, you can create a new menu and
   assign it to the **footer menu** location.
 * Thanks.
 *  [Goldfishflake](https://wordpress.org/support/users/shwebb15/)
 * (@shwebb15)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/#post-11674767)
 * What worked for me was to make a backup of the footer.php then to remove the 
   spacious info use the below in the child theme footer.php. Replace the same section
   of footer.php with this:
 * <?php do_action( ‘spacious_before_footer’ ); ?>
 *  <footer id=”colophon” class=”clearfix <?php echo esc_attr( $footer_class ); ?
   >”>
    <?php get_sidebar( ‘footer’ ); ?> <div class=”footer-socket-wrapper clearfix”
   > <div class=”inner-wrap”> <div class=”footer-socket-area”> <nav class=”small-
   menu clearfix”> <?php if ( has_nav_menu( ‘footer’ ) ) { wp_nav_menu( array( ‘
   theme_location’ => ‘footer’, ‘depth’ => – 1 ) ); } ?> </nav> </div> </div> </
   div> </footer> [](https://wordpress.org/support/topic/two-header-logos/?output_format=md#masthead)
   </div><!– #page –>
 * <?php wp_footer(); ?>
 * Add footer menu from the menus tab. Use custom link (linked to home) to show 
   copyright in the footer menu.
 *  Thread Starter [rbarron](https://wordpress.org/support/users/rbarron/)
 * (@rbarron)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/#post-11675775)
 * Here’s my child theme version of footer.php
 * <?php
    /** * Theme Footer Section for our theme. * * Displays all of the footer
   section and closing of the #main div. * * [@package](https://wordpress.org/support/users/package/)
   ThemeGrill * @subpackage Spacious Child * [@since](https://wordpress.org/support/users/since/)
   Spacious 1.0 */ ?> </div><!– .inner-wrap –> </div><!– #main –> <?php do_action(‘
   spacious_before_footer’ ); ?> <footer id=”colophon” class=”clearfix”> <?php get_sidebar(‘
   footer’ ); ?> <div class=”footer-socket-wrapper clearfix”> <div class=”inner-
   wrap”> <div class=”footer-socket-area”> <p class=”float-left”>Copyright © 1999–
   <?php echo date(“Y”); ?> by Rick Barron, [_All Rights Reserved_](https://wordpress.org/wp-admin?output_format=md).
   </p> <nav class=”small-menu clearfix”> <?php if ( has_nav_menu( ‘footer’ ) ) {
   wp_nav_menu( array( ‘theme_location’ => ‘footer’, ‘depth’ => -1 ) ); } ?> </nav
   > </div> </div> </div> </footer> [](https://wordpress.org/support/topic/two-header-logos/?output_format=md#masthead)
   </div><!– #page –> <?php wp_footer(); ?> </body> </html>

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Two Header Logos’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/spacious/1.9.12/screenshot.jpg)
 * Spacious
 * [Support Threads](https://wordpress.org/support/theme/spacious/)
 * [Active Topics](https://wordpress.org/support/theme/spacious/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/spacious/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/spacious/reviews/)

## Tags

 * [double](https://wordpress.org/support/topic-tag/double/)
 * [footer](https://wordpress.org/support/topic-tag/footer/)
 * [header](https://wordpress.org/support/topic-tag/header/)
 * [logo](https://wordpress.org/support/topic-tag/logo/)
 * [page-navigation](https://wordpress.org/support/topic-tag/page-navigation/)

 * 9 replies
 * 4 participants
 * Last reply from: [rbarron](https://wordpress.org/support/users/rbarron/)
 * Last activity: [6 years, 11 months ago](https://wordpress.org/support/topic/two-header-logos/#post-11675775)
 * Status: resolved