Hi Riccardo,
Thanks for getting in touch with us! I can help you here ๐
Do you want to hide the first event from all instances of the list widget? Or just the once in that page you are building?
Maybe a CSS snippet is better than hi-jacking the query:
/* hide first event of a specif list widget */
/* replace the ID for the actual widget ID */
#tribe-events-adv-list-widget-2 .type-tribe_events:nth-child(2){
display:none;
}
/* hide first event of all list widget instances */
.tribe-events-adv-list-widget .type-tribe_events:nth-child(2){
display:none;
}
Please let me know if that helps,
Have a great weekend,
Nico