Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #692429

    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

    #693237

    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

    #693258

    Hi Yigit,

    yeah, you are right. the title does not show up, but the h1-tag is still there…

    #693306

    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

    #693340

    thx for your help, but it´s not working :-(

    #693341

    Hey!

    Please create a temporary admin login and post it here privately if you would like us to look into it.

    Cheers!
    Yigit

    #693354

    here it is….

    #693359

    Hi,

    Can you please switch user role to administrator? :)

    Best regards,
    Yigit

    #693360

    ups :-D

    #693364

    Hey!

    Could you please flush browser cache and refresh your page a few times? It does not show up on my end :)

    Regards,
    Yigit

    #693365

    sorry, i did both before……

    but it works now! Thx a lot!

    #693368

    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

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘hide the h1.main-title.entry-title at the header’ is closed to new replies.