hello,
you is it possible to only display the site title instead of the logo at the top of the site?
thank you for your reply
Hey!
Open /includes/helper-main-menu.php, find this code:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Replace it by this code:
echo "<div class='logo'>".get_bloginfo ( 'title' )."</div>";
Then, your Blog title will be used as a text logo.
Cheers!
Josue
Thank you for your help,
Is it be possible to add a text field in the theme options directly?
Alex
Hi!
Please refer to Ismael’s post here – https://kriesi.at/support/topic/submenu-color-doesnt-change-and-would-like-to-show-header-text-instead-of-logo/#post-253782
Best regards,
Yigit
Thank you for your help
This change works with 2.8.1 enfold? because it does not work.
We must add the code in the functions.php file?
/enfold/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></$headline_type>";
return $logo;
}