Currently there is no option to add scheduled tasks to wix code.
Therefore you will have to use hooks to first check if date = today, and if so, modify its status to pending and return the new item.
Depending on your specific usage, you will probably need to use beforeUpdate, beforeGet and/or beforeQuery.
I build a site for a company that has subscription periods. For example, there is a customer who takes a subscription for a month, three months, a year. I would like to define that pressing three months will add three months alone.
I actually asked how do I add months using the code of course, for example in the selection on the three months will return the start date + 3 months?
Thank you