Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #300413

    Hi, is there a way to use just some title text (same font and size as the menu text) rather than a logo image to display in place of the logo image on the left side of the header?

    Thanks

    #300475

    Hi Richard!

    Thank you for using Enfold.

    Please use this on functions.php:

    add_filter('avf_logo_final_output', 'avf_text_logo_final_output');
    
    function avf_text_logo_final_output($logo) {
    	$link 	  = apply_filters('avf_logo_link', home_url('/'));
    	$logotext = "THIS IS MY LOGO";
    	$subtext  = "THIS IS THE SUBTEXT";
    	$subtext  = "<span class='subtext'>$subtext</span>";
        $logo     = "<h1 class='logo bg-logo'><a href='".$link."'>".$logotext."$subtext</a></h1>";
    	 
    	return $logo;
    }

    Change the subtext and the logotext.

    Regards,
    Ismael

    #300623

    Excellent, thanks Ismael

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Title text rather than logo’ is closed to new replies.