Tagged: , ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #489967
    #490246

    Hi tomcuylaerts!

    Just upload your own logo into /enfold/images/layout/ and rename it to logo.png for an easy fix.

    Cheers!
    Elliott

    #490611

    For those wo are looking for a more complete solution, add this in your (child theme’s) functions.php file:

    add_filter('avf_logo_final_output', 'avia_remove_default_logo', 10, 6);
    function avia_remove_default_logo($logo, $use_image, $headline_type, $sub, $alt, $link){
    	if(strpos($logo,'enfold/images/layout/logo.png'))
    		return '';
    	else
    		return $logo;
    }

    Variable $use_image is always the path to the default logo, so you can’t use that.

    This generates no output when no logo is uploaded.

    #490737

    Hi!

    Glad you figured it out and thank you for sharing your solution :)

    Cheers!
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Remove default enfold logo when no logo image is uploaded’ is closed to new replies.