Hello GoriGeek,
I’m sorry to hear that you’re having trouble. From what you’ve written, it seems that you’re having an issue with showing featured image in search result. Is that correct?
In that case, Please go through following steps :
1. First create a child theme. You have to create a child theme visit the link https://codex.www.ads-software.com/Child_Themes
2. Next, copy file content-search.php from parent folder to child folder. In line 22 of that file replace the code between <div class=”entry-summary”> and </div> with the following code in child theme:
`<div class=”entry-summary”>
<?php if ( has_post_thumbnail()): ?>
<?php the_post_thumbnail(‘medium’); ?>
<?php endif ?>
<p class=”medium-thumb”>
<?php the_excerpt(); ?>
</p>
</div><!– .entry-summary –>`
3. Now, go to Dashboard >> Appearance >> Customize Option >> Themes Options >>Advanced Section
. You will find textarea for Custom Css. Place the code below inside Custom Css.
p.medium-thumb{
margin-top:10px;
}
Hope that it will help in resolving your issue.
Thanks!!