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!
Hello,
Sorry for my english, I'm french.
I created a table with a sql query :
SELECT ID, DATE_FORMAT(post_date, "%d/%m/%Y %H:%i:%s") AS date, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_email'
) AS email, (
SELECT
CASE
WHEN meta_value LIKE '%Non%' THEN 'Non'
WHEN meta_value LIKE '%Oui%' THEN 'Oui'
ELSE ''
END
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_souscription'
) AS souscription, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_civilite'
) AS civilite, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_nom'
) AS nom, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_prenom'
) AS prenom, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_adresse_1'
) AS adresse_1, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_adresse_2'
) AS adresse_2, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_code_postal'
) AS code_postal, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_ville'
) AS ville, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_telephone'
) AS telephone, (
SELECT
CASE
WHEN meta_value LIKE '%Non%' THEN 'Non'
WHEN meta_value LIKE '%Oui%' THEN 'Oui'
ELSE ''
END
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_client_jardicoop'
) AS client_jardicoop, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_code_client'
) AS code_client, (
SELECT
CASE
WHEN meta_value LIKE '%Non%' THEN 'Non'
WHEN meta_value LIKE '%Oui%' THEN 'Oui'
ELSE ''
END
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_compte_urssaf'
) AS compte_urssaf, (
SELECT meta_value
FROM jc_postmeta
WHERE post_id = jc_posts.id
AND meta_key = '_field_numero_urssaf'
) AS numero_urssaf
FROM jc_posts
WHERE jc_posts.post_type = 'flamingo_inbound'
AND jc_posts.post_content LIKE '%credit-impot-instantane%'
ORDER BY jc_posts.id DESC
But when I try to filter these datas (whatever I filter), the result is always the same : "Aucun élément à afficher" (no result). Even the search input, without the Powerful Filter add-on, doesn't work.
Where is the problem ?
Thanks for your help
Bests regards
Pierre
Hi, Pierre
Firstly, I would like to sincerely apologize for the delayed response as we have been experiencing an unusually high number of tickets. I am sorry that it has taken longer than usual to respond to your concern and your patience is highly appreciated.
-
I can see that there is a similar ticket to this one, and 7 hours ago you wrote it is resolved.
But i am not sure if it is the exact same issue.
If you have issues with an SQL query presenting the data in our plugin, but the filtering does not work, please read these important informations:
-
In some situations, using certain functions within SQL, the wpDataTables server has problems with parsing the query and building new queries dynamically (rarely happens, but does sometimes).
Our logic is based on a PHP SQL parser which has full support for the SQL dialect for the following statement types
SELECT, INSERT, UPDATE, DELETE, REPLACE, RENAME, SHOW, SET, DROP, CREATE INDEX, CREATE TABLE, EXPLAIN and DESCRIBE.
Some of them are disabled for security reasons.
Filtering, sorting, calculation functions and search may not work properly if you include:
Accent graves ( ` ) around the table name JOIN functions UNION functions CONCAT functions sub-queries -
-
To avoid this, can you please prepare a MySQL view (a stored query), which will return the data that you need, call it e.g. “view1” and then build a wpDataTabled based on a simple query like “SELECT * FROM view1″.
- If you need help creating a View and use it with our plugin, here is our video with an example.
Let us know if this helped.
Kind Regards,
Miloš Jovanović
[email protected]
Rate my support
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Hello Miloš,
Thanks for your reply. Finally, I've unchecked "Enable server-side processing" and it's good ! I can filter my table.
Thanks again
Bests regards
Pierre
Hi, Pierre
You're welcome, glad to be able to help in any way.
If anything else happens, please don't hesitate to open a new ticket. Thank you.
Kind Regards,
Miloš Jovanović
[email protected]
Rate my support
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables