Site logo

[Support request] Different Logos

Home Forums Support [Support request] Different Logos

Home Forums Support Different Logos

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2558546
    Parag Agarwal

    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.

    #2558697
    David
    Staff
    Customer Support

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.