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!
We Need our table to Render a MachID number from MySql database, we need this MachID to fire a Hyperlink similar to: ~\machines\MachQuote.aspx?MachID={0}.
The intend is for the table to display the MachID, but Hyperlink to the actual Machine quote based on the MachID number clicked.
If you need us to add another field to MySql database that reads i.e.: Machines/MachQuote.aspx?Mach=10182 that the MachID refers to we can do that too.
What is the best way to encode this Hyperlink call out in wpDataTable?
Hi Jon,
Thank you for your purchase.
Sorry but I did not quite understand what are you trying to achieve.
Can you please describe me more so I can give you my suggestion.
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
We need to (PHP code) or some other method that allow us to make the MachID Field (hyperlink) that executes a simple command to:
The goal here is to have the hyperlink field point to a specific Machid and a specific page on our site.
echo "<td><a href=\"mysqlupdate2.php?MachID=$MachID=\">$MachID=</a></td>";
Can I recode the select table query and add this type of call out?
Hi Jon,
For manipulating data in URL column we have built in filter
wpdatatables_filter_link_cell
which allows you to change value in that column before it is passed to the front-end.
other option would be to concat URL text with that Id on MySQL side with CONCAT function