Hello @LorenAbility360,
Thanks for updating this thread. Since the child theme is set up, please add the following code in your child theme’s functions.php file
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
Please note that custom coding is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third party developer.
We would loved to know if this has work for you. Thank you.