-
AuthorPosts
-
January 28, 2018 at 6:40 pm #903912
I have struggled with setting the size of Featured Images inside Single Events with Enfold for a while and although I did modify the single-events.php I found that adding this code to my child theme Functions.php to be much better.
I am using Full but you can make it Square, or anything you want including re-defining your thumbnail sized followed by re-generating the thumbnails to the new sizes sitewide.// Change size of featured image on single events using post_thumbnail_size add_filter( 'post_thumbnail_size', 'ebwp_single_event_post_thumbnail_size'); function ebwp_single_event_post_thumbnail_size($size) { if( !is_singular('tribe_events') ) { return; } if( ! has_post_thumbnail() ) { return; } $size = 'full'; // Change to your desired image size. return $size; }
Alternative, y if you want to hide the Featured Image in a Single Event you can add this to your Quick CSS
.single-tribe_events .tribe-events-event-image { display: none; }
An unrelated helpful piece of code I also have in Functions.php for Events Calendar is this to reverse the order of past events.
Not sure why this isn’t how it is out of the box// Changes past event views to reverse chronological order function tribe_past_reverse_chronological ($post_object) { $past_ajax = (defined( 'DOING_AJAX' ) && DOING_AJAX && $_REQUEST['tribe_event_display'] === 'past') ? true : false; if(tribe_is_past() || $past_ajax) { $post_object = array_reverse($post_object); } return $post_object; } add_filter('the_posts', 'tribe_past_reverse_chronological', 100);
January 29, 2018 at 6:28 am #904075Hey Jon,
Thank you for sharing! :)
If you need further assistance please let us know.
Best regards,
VictoriaAugust 31, 2021 at 2:17 am #1319043millertimesites – Thank you! This is just what I was looking for and it works great!
September 1, 2021 at 12:52 pm #1319340Hi,
@ashlandwebsites: Glad to know that you got what you are looking for! Thanks to @millertimesites. Please feel free to open another thread if you need anything else.Have a nice day.
Best regards,
Ismael -
AuthorPosts
- The topic ‘Events Calendar Pro Featured Image Size In Single Events’ is closed to new replies.