Holiday Notice – Support Unavailable on April 18 and April 21
We just wanted to let you know that our support team will be offline on Friday, April 18th (Good Friday) and Monday, April 21st (Easter Monday) due to the holidays.
We'll be back on Tuesday, ready to assist you!
In the meantime, if you need any help, feel free to:
-
Use the support widget in the bottom right corner on our websites (Amelia and wpDataTables) — our latest AI-powered assistant is there 24/7 to help with basic and intermediate questions,
-
Browse our detailed documentation (Amelia, wpDataTables)
-
Explore helpful articles,
-
Or check out our YouTube channels for video guides!
Amelia YouTube Channel
wpDataTables YouTube Channel
Thank you for your understanding, and we wish you a wonderful holiday weekend!
How would I filter a table for null or blank values using the standard filtering (not predefined filter values)? Thanks for your help!
Hi Richelle,
We need some more information like what kind of table do you use, is it server side or not? Do you have both blank values and NULL? Maybe it would be the best if you can send us link with that table so we can take a look.
Hi Miljko,
The table uses a mySQL Query and server-side processing. I want to be able to filter for blank values.
As a work-around, I modified the SQL View used to replace blank values with '0' so we can filter for '0' to find the blank values. But, this is not ideal and I would like to have a way to filter for these blank values. Any suggestions are appreciated!
Your plug-in is great, thank you.
Richelle
Hi Richelle,
Which filter type do you plan to use?
Our filters are string based so unfortunately they can't search for NULL value without code customization.
One of the solutions would be to modify the query using a WP hook/filter:
wpdatatables_filter_mysql_query( $query, $table_id )
And modify the query 'on the fly' in a way that a filter for blank string would additionally perform a ' OR IS NULL(column_name) ' search.