Tagged: 

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

    Hi,

    I have a website with enfold, I can see there are good header options, However how can I make header sticky on our Home page and make it unsticky on Blog Pages.

    Thank you

    #574513

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

    add_filter('avf_header_setting_filter', function($header) {
    	if(is_front_page()){
    		$header['header_sticky'] = 'header_sticky';
    		$header['header_class'] .= " av_header_sticky";
    	}	
    	return $header;
    
    }, 10, 1);

    Cheers!
    Josue

    #574515

    If we can have an option in next update :)

    There are already header option on post edit screen of wordpress. They make header transparent , if they can make it unsticky as well, That will be great

    #574518

    Feel free to request it here as a new feature.

    Best regards, 
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.