Hi There,
To achieve that, you have to setup a child theme first:
After that add this code under functions.php
file locates in your child theme:
add_filter('cs_match_header_assignment', 'custom_search_header');
function custom_search_header($match) {
if (is_search()) {
$match = 1234; // the post ID for your header
}
return $match;
}
That 1234
is the post ID you need for this snippet. You need to get the post ID of the header you’d like to assign. The easy way to do that is to simply hover over the Edit link in the builder, and take a look at the URL in your status bar. It should look similar to domain.com/x/#/headers/1234
Hope that helps and thank you for understanding.