// Conditionally Disable Fixed Header/Menu
add_filter( 'wpex_has_fixed_header', function( $bool ) {
// Disable on front page
if ( is_front_page() ) {
$bool = false;
}
// Return bool
return $bool;
} );
// Conditionally Disable Fixed Header/Menu
add_filter( 'wpex_has_fixed_header', function( $bool ) {
// Disable on front page
if ( is_front_page() ) {
$bool = false;
}
// Return bool
return $bool;
} );