regarding this tutorial https://theeventscalendar.com/fast-forward-to-the-next-upcoming-event/
I was having a problem with the calendar grid fast forwarding to the next upcoming date, but the list of events that comes after was showing the first events i ever posted (which was 2013) …
finally found the fix – find this line:
remove_action( ‘parse_query’, array( $this, ‘amend_list_query’ ) ); // Run this once only
and comment it out
//remove_action( ‘parse_query’, array( $this, ‘amend_list_query’ ) ); // Run this once only
notice the comment says to run only once? i guess this meant only the calendar grid was advanced, but the list wasn’t? am i correct on this, is there anyway someone can confirm that this is the proper solution?