I have a woocommerce shop, and I want to be able show orders where a custom field has a value of today.
I realized that it can be done by going to a certain url, since updating the HTTP query string will get the job done. I'm thinking of something likes this: 'domain.com/wp-admin/edit.php?order_by=abc&date=DATE_HERE&somethingelse'
So how can I put an html <a>
-element on the woocommerce orders page, and how can I update the href automatically using javascript? Which php action hooks should I use?