Site logo

[Support request] Alternative logotype on specific parts of the site

Home Forums Support [Support request] Alternative logotype on specific parts of the site

Home Forums Support Alternative logotype on specific parts of the site

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2536660
    Klara

    Hi!
    I’m making a dual-language site, and I want the logotype image to change for the english-version page.
    So for https://www.mammamu.se/ – regular logotype and all pages under: https://www.mammamu.se/en/ – alternative logotype. Is it possible to change the logotype with code for pages in a sub-folder like this?

    #2536729
    David
    Staff
    Customer Support

    Hi there,

    try this PHP Snippet:

    add_filter( 'generate_logo', function( $logo ) {
        $locale = $_SERVER['REQUEST_URI'];
        if ( strpos( $locale, '/en/') !== false ) { 
            return 'URL TO ENGLISH LOGO';
        }
    
        return $logo;
    } );
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.