Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1020919

    Hello,

    When in the theme’s general styling, in the main menu and header tabs the Enfold logo is Visible. Is there a way to replace this logo with another?

    #1020921

    Hey bobfurgo,

    The default logo will be deactivated when you upload your own logo.

    Upload a blank png to disable the default logo.

    You can also try adding the below CSS to hide the logo

    .logo { display: none; }

    Hope this helps :)

    Best regards,
    Vinay

    #1020924

    Hi Vinay! Thanks for the quick response. I’m actually talking about the logo in the main menu and header tabs within the wp backend in the theme’s general styling.

    #1021050

    Hi,
    Try going to this folder in your theme and replacing the image with your own that is the same size.

    /enfold/images/layout/logo_modern.png

    Best regards,
    Mike

    #1168321

    thanks! is there a way to add something to child theme’s php so it doesn’t get overwritten with updates? Also i uploaded it and replaced the older file but nothing happened. it still shows the enfold logo in the header and main menu area when looking at theme settings

    • This reply was modified 5 years ago by bobfurgo.
    #1168358

    Hi,
    I couldn’t login because I don’t have the .htaccess password but I was able to download your “logo” via ftp, I assume it was not working for you due to caching? Anyways I wrote this script for your child theme to replace the theme panel demo logo, the script only fires in the WordPress admin panel. You will need to upload your image somewhere safe like the media library and change the url in the script, then add the script to your child theme functions.php file in Appearance > Editor:

    function custom_pr_logo(){
        ?>
        <script>
        (function($){
        $(document).ready(function(){
        $("#wpbody-content #pr-logo").attr("src","http://test.test/wp-content/uploads/2019/12/logo_modern.png");
        });
        })(jQuery);
        </script>
        <?php
    }
    add_action('admin_head', 'custom_pr_logo');

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

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