Hello,
By default, the search full width shows posts with squares photo (scales from 150×150). My cover photos on posts have a different ratio – horizontal. Images are clipped in the search engine. How can I fix it?
EDIT:
I found it. Xstore core. Path: /plugins/et-core-plugin/app/models/customizer/class-ajax-search.php
Line: 314
'img' => get_the_post_thumbnail_url( $post->ID, 'thumbnail' ),
change to:
'img' => get_the_post_thumbnail_url( $post->ID, 'medium' ),
I know after updating the changes disappeared. I will propose a fix on future request.