Hi Joe,
You could probably do that. I would suggest making a child theme to place this change in to help with future theme updates. The file we need to change is header.php so you’d copy that file and add it to the child theme. Then edit it and find this spot (line 151):
<?php if ( is_search() ) { ?>
Right below that add this:
(see support site for code to copy)
You’ll need to place your slider shortcode inside the quotes where it says:
do_shortcode( '' )
so it’s something like this:
do_shortcode( '[slider id="528"]' )
or whatever the actual shortcode is and save your changes.
This will only impact the home page. You’ll still need to select to include the hero on that page as well as the height as they will be taken into account.
Hope that helps out,
Bill