Fixed Header Instead of Menu For Header Style Two, Three and Four
/** * Filters the sticky header check. */ add_filter( 'totaltheme/header/styles_with_sticky_support', function( array $styles ): array { $styles[] = 'two'; $styles[] = 'three'; $styles[] = 'four'; return $styles; } );