Two Logos in header on either side

Hello, I would like to get two logos into the header. I’ve found this support article but it is outdated: https://theme.co/apex/forums/topic/two-logos-in-header-2/

Thanks,

M

Hey M,

Thanks for posting in!

Because what you are trying to accomplish requires a template customization, we would highly to suggest that you use a child theme. This allows you to make code changes that won’t be overwritten when an X update is released.

Then copy this file wp-content/themes/x/framework/legacy/cranium/headers/views/global/_brand.php to your child theme wp-content/themes/x/framework/legacy/cranium/headers/views/global/_brand.php

Then edit the _brand.php file that you copied on your child, theme,

<?php

// =============================================================================
// VIEWS/GLOBAL/_BRAND.PHP
// -----------------------------------------------------------------------------
// Outputs the brand.
// =============================================================================

$option_logo_text = x_get_option( 'x_logo_text' );
$option_logo_src  = x_get_option( 'x_logo' );
$logo_text        = ( empty( $option_logo_text ) ) ? get_bloginfo( 'name' ) : $option_logo_text;

if ( empty( $option_logo_src ) ) {
  $logo_output = $logo_text;
} else {
  $logo_src    = x_make_protocol_relative( $option_logo_src );
  $logo_output = '<img src="' . $logo_src . '" alt="' . $logo_text . '">';
}

if ( x_get_option( 'x_logo_visually_hidden_h1' ) ) {
  echo '<h1 class="visually-hidden">' . $logo_text . '</h1>';
}

?>

<a href="<?php echo home_url( '/' ); ?>" class="<?php x_brand_class(); ?>">
  <?php echo $logo_output; ?>
</a>

You will need to alter the code and add your other logo as well.

Please note that custom coding is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third party developer.

Please let us know how it goes.

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