- This topic has 12 replies, 2 voices, and was last updated 6 years, 10 months ago by .
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 › Envira Photo Gallery Thumbnails are not displayed
Hi. The example helped me a lot, thank you!
This is the code in the file 722.php:
https://www.screencast.com/t/0xGX6t34DVT
Or:
<div class="result-content">
<div class="result-img"><?php echo wp_get_attachment_link(get_the_ID(),'medium'); ?></div>
<h2 class="result-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="result-caption"><?php echo nl2br(wp_get_attachment_caption()); ?></div>
</div>
You will need to use the classes I have added to style it. Note that the caption also contains the name of the image, so that appears twice now. Once as the title, and once in the first line of the caption.