Hi @rothster ,
Sorry because the delay to reply.
To show image in each search result you can follow step below:
Create a child theme of Customify and copy file search.php from main theme to this child theme.
On file search.php of child theme change source code
customify_blog_posts(
array(
‘_overwrite’ => array(
‘media_hide’ => 1,
‘excerpt_type’ => Customify()->get_setting( ‘search_results_excerpt_type’ ),
‘excerpt_length’ => Customify()->get_setting( ‘search_results_excerpt_length’ ),
‘excerpt_more’ => Customify()->get_setting( ‘search_results_excerpt_more’ ),
),
)
);
To
customify_blog_posts(
array(
‘_overwrite’ => array(
‘media_hide’ => 0,
‘excerpt_type’ => Customify()->get_setting( ‘search_results_excerpt_type’ ),
‘excerpt_length’ => Customify()->get_setting( ‘search_results_excerpt_length’ ),
‘excerpt_more’ => Customify()->get_setting( ‘search_results_excerpt_more’ ),
),
)
);
Let me know if you need anything further!