want to add a banner at the top of the search page, but I couldn’t find the right file to modify. I tried creating a hook, but it didn’t work. Is there a proper hook or a file that I can override in the child theme to add this banner?
Thank you in advance!
I also add an image.
Here is the hook I tried to use:
add_filter(
'hivepress/v1/templates/listings_view_page',
function($template){
return hivepress()->template->merge_blocks(
$template,
[
'search_banner' => [
'type' => 'part',
'path' => 'custom-parts/search-banner',
'_order' => 5,
'attributes' => [],
],
]
);
},
1000
);