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
Hello, we started using your plugin and I have a few questions on "how to":
1) Need a field which is a select box with values from another wpdatables table.
2) I put a table in backend
of woocommerce product edit using php (do_shortcode). I also enable front page editing for the admin to be able to edit it there. So maybe I can use another way to call the table with edit options aside from do_shortcode?
3) This table has a field "prod_id" which is the id of the edited product. I want to do 2 things:
I can pass prod_id as variable when I call the table.
4) Some of the rows I need to make as titles, just 1 cell. So I have a field "type" for this. Since I did not find a way to do it, I thought add class to row if type=title. But since I make the column invisible add class does not work. Is this a bug? Anyway what solution will you advice?
Thanks
Hi Dima,
Thank you for your purchase.
1) Unfortunately this functionality is not available at the moment. We are working on implementing the feature that you need and it will be introduced in the future versions of the plugin, hopefully early next year.
2) In file ../wp-content/plugins/wpdatatables/controllers/wdt_functions.php around line 392 you you will find this function
which is similar as the do_shortcode. So I hope it can help you.
3) Unfortunately this functionality is not available without code customization. If you are interested we can offer you our paid customization service but now we have a lot of tasks in our backlog for future update and we do not have available developers to implement this functionality for you, sorry.
4) As I understand you are using Conditional formating for that "type" field. It is not a bug because conditional formating will not work for invisible columns.
If you are skillful with develop I suggest you to take a look at this page and to see some examples that are unrelated to our plugin that you can implement on your own.
We also do this kind of implementation but this features belong to code customization.
Thank you for understanding.
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
Update:
1) It seem like there may be a way using your predefined hooks, but I didn't look into this yet.
3) Found it pretty fast in your documentation, there is prefilter by column, just pass %var% to "Default value(s)" and send the value to filter by as %var% when called with shortcode.
4) Own jquery solution, just display:none unneeded td's, and the needed one add colspan using jquery. Works fine.