- This topic has 1 reply, 2 voices, and was last updated 9 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Featured image size
Tagged: featured image
Hi Trevor
For some reason the featured image on posts is showing at it’s full size instead of thumbnail size on the search page: http://dev.herefordequestrian.co.uk/search-test/
This problem isn’t occurring anywhere else on the website.
Hope you can help,
Many thanks
Sally
Hi Guy/Sally (?)
If you are using the Shortcode method which uses the results.php template, find the featured image part (on the standard template file this is at line 59) and see it is using the ‘small’ image size. Change this to ‘thumb’. See here, from this:
if ( has_post_thumbnail() ) {
echo '<p>';
the_post_thumbnail("small");
echo '</p>';
}
to this:
if ( has_post_thumbnail() ) {
echo '<p>';
the_post_thumbnail("thumb");
echo '</p>';
}