Tagged: header
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
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
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
Feel free to request it here as a new feature.
Best regards,
Josue