Hi Marco,
In that case, please add this php code in your child theme’s functions.php
add_filter('cs_match_header_assignment', 'custom_search_header');
function custom_search_header($id) {
if (is_tag()) {
$id = 1224; // id of global header
}
return $id;
}
So basically, what the code does is it overrides the header assignment if the page is a tag page. The id
variable there is the id of your global header. To know what the id of your header is, you just have to edit that header then check the url, the number seen there will be the id of that particular header.
Hope it helps.