Filtering CMS items Using Current Day

Hello,

I am trying to filter out games in a “next game” card whose dates have already passed. I am sure this requires some custom JS, but I can’t seem to get it right. I’ve tried “Filters” then selected the ‘date’ field in the cms item, greater than as the operator, and tried running a custom JS function that returns the current date, but it hasn’t worked. Any help is greatly appreciated!

I do exactly this but for future post to be filtered out. Use the visibility condition:

And add this JS in the filtering field:

return let date = new Date(); let formattedDate = date.getFullYear() + '-' + (date.getMonth() + 1).toString().padStart(2, '0') + '-' + date.getDate().toString().padStart(2, '0'); return formattedDate;

But change to “higher Equal than” for filtering out passed dates
Skärmavbild 2025-02-26 kl. 22.40.40

I hope this helps :slight_smile:

2 Likes

I think that did it!! You don’t know how long I’ve been trying to get this to work. I did it on the filter section because visibility hid the whole component. Thank you SO much. Maybe it’s time to learn JS…

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.