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!
Hi I would like to ask for example I want to display a info onto a particular column of my table How do I do it . For example I created a column and for that column I want to pull out the user role and display user's user role in it .
Regards
Hello bidtocart.
I am sorry but I don't quite understand what you're asking here.
Can you explain in a bit more detail?
How was the table created? Is it SQL query based table; or import from Excel, CSV or Google Spreadsheet; or link to one of these; is it a manual table? How many columns containing which data? Where would you display that user role - in another column?
Please share as much info as you can. Some screenshots would also be awesome.
Thanks in advance
Best regards.
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
sorry, my apologies for the unclear explanation. I just want to create one table with one column. the column will display the user's user role,
Ah, I see bidtocart.
The thing is that you can't actually do this easily.
You would have to create an SQL query based table, and pull the info from the database.
User roles are stored in wp_options table and in wp_user_meta.
To check user roles, first, check out the user id in the table wp_users (Column name ID)
Now Go to table wp_usermeta and search where column user_id is equal to the ID that matches ID from wp_users table.
You will get a list of rows with metadata of the chosen user, the row with meta_key as wp_capabilities defines the user role.
The Value of wp_capabilities for
Admin : a:1:{s:13:"administrator";b:1;}
Woo Commerce Customer : a:1:{s:8:"customer";b:1;}
That would require some custom query to be written.
Best regards.
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