I view my events in a tile display with an image, date, title, and sub-title in a 4-column grid. Some of the events are repeat events. How can I display both dates of an event on the same tile?
For instance - I have an event on Sept 20th and the same event on Sept 21st. How can I display one tile but show both dates? I have it setup to show repeat dates on the event card when the user clicks on the tile, but I'd like to show both dates on the tile.
Thanks,
- Aug 30,2024 AT 3:13PM - 1 year agowithout a ton of customization to the code (which we don’t offer) the only way is to create a custom field and manually add the dates to that new field
see video below:
you also could add it to the featured image to get the look you are after? sure its a bit of work but if you are handy with image editing – the first ones the hardest then you have a template to do others
Thank you for the quick reply and solution. I was able to get it done and through CSS clean it up. It would have been nice to show all dates in the date block. Maybe a future update!
Thank you for your great suggestion, at the moment it is not supported. However please create a new ticket and select Feature Request as category so others can vote on your idea and get it moved into development faster.
this css might work its optional
.eventon_events_list .eventon_list_event .evoet_c4, .evo_pop_body .evoet_c4 {
display: flex;
flex-basis: 40%;
flex-direction: column;
flex: 1;
flex-wrap: wrap;
align-content: space-between;
justify-content: flex-end;
}
it should push the dates to be along the bottom of the tile- don’t know if thats something you want