We're Moving to a New Support Platform – Starting June 1st!
We’re excited to let you know that starting June 1st, we’ll be transitioning to a new support system that will be available directly on our product websites – Amelia, wpDataTables, and Report Builder. In fact, the new support platform is already live for Amelia and wpDataTables, and we encourage you to reach out to us there.
You'll always be able to reach us through a widget in the bottom right corner of each website, where you can ask questions, report issues, or simply get assistance.
While we still do not offer live support, a new advanced, AI-powered assistant, trained on our documentation, use cases, and real conversations with our team, is there to help with basic to intermediate questions in no time.
We're doing our best to make this transition smooth and hassle-free. After June 1st, this current support website will redirect you to the new "Contact Us" pages on our product sites.
Thanks for your continued support and trust – we’re excited to bring you an even better support experience!
Is there a way to generate a table that, by default, shows the last month of available data, but allow people to filter this if they want to change the date range? Thank you. At the page I provided a link to above, you can see an example of what we are dealing with. I have hidden the table via CSS to just show the chart.
I found a solution that works for me. What I did was create a custom shortcode that uses PHP to calculate the right date range. The start date then gets fed to wpDataTables by returning do_shortcode[wpdatatable...] . In that shortcode I include the VAR1 placeholder, set to the start date I need to use. This then gets used in the SQL Query that collects the data. I don't care about the end date because my data are always past data so in the SQL I just need to filter for dates later than the start date. Ideally I'd have this start date show up in the filter form above the table but that's less important. But if you are collecting ideas for new features, it would be great if %VAR1% could be inserted as the default start date.