As previously announced via banners and our newsletters, support is no longer available through this platform.
For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.
You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.
Paid customers: Please log in to your store account for support.
Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com
I need to add a new cell on a table with some like this
HTTP://www.mydomain.com/detail?id= the wdt_ID of the record
It's possible? How?
Thanks
Hi Felipe
Thank you for reaching out to us.
You can create a new table using SQL query:
SELECT *,
CONCAT('blank">',wp_wpdatatable_1.wdt_ID,'</a>') AS hyperlinkColumn
FROM wp_wpdatatable_1
That way you can pull all columns and cells from the manual table (wp_wpdatatable_1) and add a new column that would have a hyperlink to http://www.mydomain.com/detail?id=VALUE_OF_WDT_ID_COLUMN