Site logo

[Support request] Logo customisation

Home Forums Support [Support request] Logo customisation

Home Forums Support Logo customisation

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2551257
    ppbw

    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

    #2551354
    David
    Staff
    Customer Support

    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/

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