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!
I've created a table that include both an Post Author Column and a wp_user.ID column.
On the "Editing" tab, I've set the "User ID Column" to my wp_user.ID column.
When I login with a user that has data, no data is visible in the table?
This is the query I am using:
SELECT posts_deliverable.ID AS deliverable_ID,
posts_deliverable.post_title AS deliverable_post_title,
CONCAT('<a href="',posts_deliverable.guid,'">',posts_deliverable.post_title,'</a>') AS deliverable_title_with_link_to_post,
posts_deliverable.post_content AS deliverable_post_content,
posts_deliverable.post_status AS deliverable_post_status,
posts_deliverable_author.display_name AS deliverable_post_author,
posts_deliverable_author.ID AS deliverable_post_user_ID,
deliverable_taxonomy_category_tbl.name AS deliverable_taxonomy_category
FROM wp_posts AS posts_deliverable
INNER JOIN wp_users AS posts_deliverable_author
ON posts_deliverable_author.ID = posts_deliverable.post_author
INNER JOIN (SELECT name, object_id as id FROM wp_terms AS deliverable_taxonomy_category_tbl_terms INNER JOIN wp_term_taxonomy AS deliverable_taxonomy_category_tbl_termtaxonomy ON deliverable_taxonomy_category_tbl_termtaxonomy.term_id = deliverable_taxonomy_category_tbl_terms.term_id AND deliverable_taxonomy_category_tbl_termtaxonomy.taxonomy = 'category' INNER JOIN wp_term_relationships AS rel_deliverable_taxonomy_category_tbl ON deliverable_taxonomy_category_tbl_termtaxonomy.term_taxonomy_id = rel_deliverable_taxonomy_category_tbl.term_taxonomy_id) AS deliverable_taxonomy_category_tbl
ON deliverable_taxonomy_category_tbl.ID = posts_deliverable.id
WHERE 1=1
Hello Lance
I'm sorry, but I don't see wp_user.ID column in your query (you mean wp_users table, right?).
The column needs to be included in the query in order to get it to work.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
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
Yes sorry I meant wp_users.
The query includes INNER JOIN wp_users AS posts_deliverable_author
Is this not enough?
If you see the column in the drop-down, it should be enough.
However, using a query like this may cause some issues.
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 wpDataTable based on a simple query like “SELECT * FROM view1″.
When working with the server-side processing feature, please note:
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
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