Hi there,
Yes it works now, please follow the fix here https://community.theme.co/forums/topic/header-issues-underline-issue-on-edge/#post-881406
And you will be replacing these lines,
$wp_query->is_404 = false;
$wp_query->is_page = true;
with these lines,
$wp_query->is_404 = false;
$wp_query->is_page = true;
$wp_query->is_singular = true;
Actually, we just added a line of code on the provided code on that thread 🙂
Thanks, that should fix it 🙂 Cheers!