Site logo

Archived topic

Different Logos

1 reply · Started by Parag Agarwal on March 7, 2023

Viewing posts 1–2 of 2

I have a website crickhit.com.

This website is in English and Hindi Language.

Currently, I am using the same logo for both Hindi and English but now I want to use two different logos for English and Hindi

is it possible?

If yes, pls help me in this regard and provide the CSS for this.

Hi there,

it cannot be done with CSS.
You need to use a PHP Snippet:

add_filter( 'generate_logo', function( $logo ) {
    if ( ICL_LANGUAGE_CODE == 'en' ) {
        return 'URL TO ENGLISH LOGO';
    }

    return $logo;
} );

where it says: URL TO ENGLISH LOGO you need to add the full URL to your english logo.
you can then set your Hindi logo in the Customizer > Site Identity

This archived topic is closed to new replies.