Hi Rena,
Thanks for reaching out.
Do you have existing customization related to _index.php? If yes, then you can change this like
if ( is_home() ) :
to this
if ( is_home() || is_search() ) :
Else, please follow this (included steps for FTP in case you’re still not familiar with them
)
-
You have two option, using your hosting’s file manager (usually Cpanel) or use FTP client. Example, you can use FileZilla client (not server), then you can check the documentation of that software here https://wiki.filezilla-project.org/Documentation (FileZilla Client).
-
Let’s say you’re prefer FTP client, then log-in to your FTP client with your FTP host name, username, password, and PORT (FTP or SFTP).
-
Then navigate to your remote site’s folder where the template is located (template that you wish to copy). Example,
/home/****/public_html/wp-content/themes/x/framework/views/global/
- Now, download the
_index.php to your local folder and edit it through text editor like NOTEPAD, or any code editor. And change this line
if ( is_home() ) :
to this
if ( is_home() || is_search() ) :
Then save it.
- Then upload that file from your local folder to your remote site’s folder, but this time, navigate to your child theme’s folder (the same path as above but for child theme)
/home/****/public_html/wp-content/themes/x-child/framework/views/global/
And that’s it 
And if you decide to use your hosting’s file manager then you can check their documentation. The process is similar, you’ll just need to copy the file from the same path of parent theme to the child theme path then edit it there.
Thanks!