Site logo

Archived topic

Logo customisation

1 reply · Started by ppbw on March 1, 2023

Viewing posts 1–2 of 2

Hello,
I’m in charge of http://www.ppbw.pl.
I have a problem with displaying of the logo on the top.
I can’t customise the logo for the English version: https://ppbw.pl/en/
I found only an option to edit the site identity section and select the main logo for the main version of the website.
My theme is GeneratePress. I used Polylang to create the English version of the site.

Best,
Przemyslaw

Hi there,

it requires a little PHP Snippet:

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

    return $logo;
} );

Just update the URL TO ENGLISH LOGO to your logos URL.

How to Add PHP: https://docs.generatepress.com/article/adding-php/

This archived topic is closed to new replies.