hey folks,
I want to hide the title section at the header.
that´s what i´ve allready tried:
h1.main-title.entry-title {
display: none! important;
}
.main-title.entry-title {
display: none! important;
}
It didn´t work. It´s about the site http://www.logierhus-langeoog.de/herbstevent/
for example.
Could you please help me?
thx alot!
Tom
Hey hoibi1984,
Page title does not show up on my end. Please flush browser cache and refresh your page a few times.
If that is not what you meant, please post a screenshot and show the changes you would like to make.
Best regards,
Yigit
Hi Yigit,
yeah, you are right. the title does not show up, but the h1-tag is still there…
Hi!
Please edit your page and make sure to choose to display only breadcrumbs in title bar and then add following code to Functions.php file in Appearance > Editor
add_filter('avf_title_args', 'avia_remove_h1_hidden_title', 10, 2);
function avia_remove_h1_hidden_title($args,$id)
{
$header_settings = avia_header_setting();
if($header_settings['header_title_bar'] == 'breadcrumbs_only')
{
$args['html'] = "<div class='{class} title_container'><div class='container'>{additions}</div></div>";
}
return $args;
}
Best regards,
Yigit
thx for your help, but it´s not working :-(
Hey!
Please create a temporary admin login and post it here privately if you would like us to look into it.
Cheers!
Yigit
here it is….
ups :-D
Hey!
Could you please flush browser cache and refresh your page a few times? It does not show up on my end :)
Regards,
Yigit
sorry, i did both before……
but it works now! Thx a lot!
Hey!
You are welcome!
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)
Best regards,
Yigit