• Resolved wennycho

    (@wennycho)


    Hi,

    I have tried for a while but i still can’t have image shows on search result page no matter which search bar plugin I tried. And I can’t find how to search_form.php or anywhere to modify.
    May I know how could I do for it? do for it? Thanks a lot!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @wennycho

    Thanks for reaching out 🙂
    Every theme has its own way of showing results. Some shows images in its search results and some don’t.

    You can try the following steps in order to show images in search results.

    Step 1) Go to wp-content/themes/krystal/template-parts/
    Step 2) Find file content-search.php and open it any text editor.
    Step 3) Add this code just after the line no 13 ie <header class=”entry-header”>

    <?php 
    	if ( has_post_thumbnail()) {
            ?>
                <div class="image">
                    <?php
                        the_post_thumbnail('full');
                    ?>
                </div>                      
            <?php                    
        }  
    ?>

    Step 4) Save it and check your page again

    Let us know if you have any questions

    Best Regards
    Spiraclethemes

Viewing 1 replies (of 1 total)
  • The topic ‘Image doesn’t show on search result page’ is closed to new replies.