Our website at hidden link is using the Events Manager plugin to handle event listings; we're trying to create a view that shows upcoming events, so we need a query filter that only pulls posts who have an _event_start_date in the future.
Unfortunately, Events Manager stores that _event_start_date as a string (so the value for an event starting today would be 2020-05-19), and I don't think it's possible to filter right in the Views interface because any comparison would be against a timestamp. Is that correct?
So I'm thinking I need to add a function that uses a hook to filter the view, converts the string to a timestamp, and then compares against TODAY() to see if the _event_start_date has passed. If that's the case, could you provide me with some guidance on how to right that function?
Thanks Minesh, I would have never figured that out without your help! I also wasn't aware of the ability to add custom code right through the Toolset interface... I added the PHP snippet that way and it works great!