I generate charts using info from database. There is a number column, but it goes as 1,2,3,4 etc. I want to calculate number of entries to generate chart. When I use database 'number' section for the first 2 people it calculates as 1+2=3 people. If I add another person (3rd person) it will calculate as 1+2+3= 6 people but in fact every entry is for 1 person, it must be 1+1+1=3 people. See Graph on https://www.bayraklimemetkinlikleri.com/basvuru-toplamlari/ and find 'Zeka Oyunları Yarışması - İLÇELER' there are 2 applications but it shows as 3 because I use number section in the database. Please see also screenshots,
This is a row ID column, I believe. If you wish the chart to see each row as "1", you need to add a new integer column, which would have a predefined value set to "1". Then, you can hide that column from front end but still be able to use it in the chart.
Many many thanks. I did it as you described and it worked :) there is even 'Hide from frontend' option, so when you take pdf or excel that column is not shown. Perfect
There is one more problem as you can see in the screenshots: there are empty cells in the database but while building graph it counts empty cells as percentage and also as value. How can I omit it from percentages? So it should not be calculated. Later I used logic and put 0 (zero) for cell, but graph is still the same, because it is also calculated as a value, empty or zero is calculated as somebody chose an option, but there is no option chosen. Graph constructed still the same. Empty cells come because of logical choices in the application form filled by applicants. So there will be more empty cells as more forms arrive. If student is 1 or 2nd grader two options displayed if they are 3 or 4th graders another 2 options displayed so on. Currently 3 people applied 2 of them 1 or 2 nd graders, 1 is 3 or 4th grader. In the database there are 2 values for Mangala and Q bitz games and empty cell is created because another game is selected for 3 or 4th graders. Thank you
As for the zero - yeah that is an issue we've been dealing with, because integer and float columns cannot have anything other than numbers in them, the plugin is treating an empty cell as "0"
I can try and help you out, but you have to make some changes in code in file :
/wp-content/plugins/wpdatatables/source/class.wpdatachart.php around line 1629:
case 'int':
$return_data_row[] = (float)$row[$columnKey];
break;
case 'float':
$return_data_row[] = (float)$row[$columnKey];
break;
and replace it with this
case 'int':
if (is_null($row[$columnKey])){
$return_data_row[]=null;
}else{
$return_data_row[] = (float)$row[$columnKey];
}
break;
case 'float':
if (is_null($row[$columnKey])){
$return_data_row[]=null;
}else{
$return_data_row[] = (float)$row[$columnKey];
}
break;
With these changes you will get charts like on the first screenshot below.
If you want to make charts like on screenshot #2 you have to use wpdatachart callbacks and insert that on page where your chart is.
I tried the codes you sent, it does not change the graphs and when I add the javascript code on page and change callback ID, it totally breaks the code. Whichever chart ID I write it blocks charts from that point on until the last chart. If I write 4, it blocks 4, 5 , 6 ... ; if I write 5 it blocks 5,6,7.... and the results are still wrong, taking empty cells into consideration. I use pie chart by the way for those parts. See actual situation on: https://www.bayraklimemetkinlikleri.com/basvuru-toplamlari/ Please search for 'Mangala' so you will see the screenshot I attached. Red colour is empty value. On that page results of graphs come from 3 different datatables. I don't know if that blocks new code from running.
The callback I showed you is just an example, and it is for Highcharts (I believe). Different engines have different approach to chart settings, so callbacks are a bit different as well.
I can try and help you out, but please note that using hooks or wpdatatable and wpDataChart callbacks requires certain level of programming skills and included support refers only to advice.
Please provide me a temporary WP-admin login for your site where this happens, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue. We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course we do not provide login data to third party. You can write credentials here just check Private Reply so nobody can see them except us.
Also, make sure to tell me what are the table and chart IDs so I know where to look.
When I look at the pie chart 6 I see that the value that is not displayed is actually a string, not the integer (value) column.
I'm not sure the callback I shared with you could be used for that - it was intended to use to skip the values (in your case "1"), so it doesn't need to be skipped.
Also, The other chart has only two values:
If you were to hide the blue - it would show Koridor at 100%.
Can you create these two charts in Excel or something similar, and show me what they're supposed to look like.
Yes you wrote "If you were to hide the blue - it would show Koridor at 100%." thats what I want. There is no option defined for blue, in database it is empty cell. But it calculates as there is value.
In the application form if teacher chooses 1 or 2 nd calsses, he/she can see 2 games as option, if he/she chooses 3 or 4th classes he/she can see other 2 options, if he/she chooses 5 or 6th classes he/she can see other 2 options, if he/she chooses 7 or 8th classes he/she can see other 2 options. If we see them on table please see example table.pdf. Every form is for 1 person. We need to see result totals for every group (1 and 2 nd class is a group).
I also add screenshots of the form (1, 2, 3, 4, 5.png). So empty cells must not be taken into consideration when we make graph of the data column. They must not be calculated. Kind regards
When you get to select the columns, enable the range picker:
When you click on Range Picker, you can select the columns and rows you wish to plot in the chart:
So, after I picked those, that chart was generated like this:
I didn't apply those changes, though. Please go in your charts, and when you get to the Data range, select the Range Picker and choose the columns and rows you wish to plot on the chart, and I believe you will be able to display it correctly.
That's exactly what I needed but there will be hundereds of applications and the list will grow. It should be done by the system. All I need is "not taking into consideration empty cells". There must be a rule to define it. If the cell is empty don't calculate, that's it. I cannot do te graph manually because every day people will apply and cells will increase to hundereds. Also if I do it manually I can do it easily on Excel. All the best
After reading some SQL articles, I think the missing part in the plugin is: including logic statements section while building charts. If cells empty '' or null 'null' do not calculate etc.
Thank you for your suggestion. We carefully follow customers requirements and try to implement most of them if they appear in requests from time to time, so we will add to our idea list and look into some possible solutions on plugin side in the future.
Unfortunately, skipping NULL string values simply isn't included in the plugin's features. I tried a workaround like I suggested for 'int' and 'float' but it doesn't work like that.
Although, I believe this can be done with custom callbacks, but like I mentioned before - this isn't included in the support of the plugin and is considered custom solution.
I do hope our developers will be able to include the skip NULL values soon, though.
I am sure they will find a quick fix as this is not a custom feature but this is an error in the plugin. If they just add a section to write SQL commands or rules, it will fix this. It is not a big thing for a developer, I worked with good developers before, they find solutions fast. All the best,
Many thanks for your answer Aleksandar. Now the form is live so we had to delete data. But I will create a copy and let you know the result as soon as possible. All the best,
Unfortunately it still shows graph the same. See the bottom of the page, https://www.bayraklimemetkinlikleri.com/test2/, orange colour is empty value, it must not be shown or calculated.
Thanks for the FTP, but it appears to be FTP to access logs:
I went into each of these folders, and couldn't find public_html, or anything similar where I'd be able to access wpDataTables code, through ../wp-content/plugins/wpdatatables.
public_html is for Cpanel servers, my server is plesk so 'httpdocs' is the web folder. Inside it you can see wp-content>plugins>wpdatatables etc. My FTP client shows wp-content file at the bottom of the page maybe that's why you couldn't notice that file.
Now, I mentioned when I sent you the code, that it is a hot-fix, and that you would need to apply it again after the plugin is updated. When I opened ..wp-content/plugins/wpdatatables/assets/js/wpdatatables/wdt.googleCharts.js I saw that the fix was not there:
However, when I open the same page while logged into WordPress, it is still displaying the empty value:
This indicates that there are probably some settings in your caching plugin other than what's displayed on the page. You need to delete all cache on your website, and you will see it like another customer does (for me - incognito mode).
Nowadays I received so many emails that I can write to you late. Many thanks for your help, you are right, I don't know the reason but it shows as you mentioned when logged in. I think this solves the problem. It took long but the solution is very good. All the best,
Hi,
I generate charts using info from database. There is a number column, but it goes as 1,2,3,4 etc. I want to calculate number of entries to generate chart. When I use database 'number' section for the first 2 people it calculates as 1+2=3 people. If I add another person (3rd person) it will calculate as 1+2+3= 6 people but in fact every entry is for 1 person, it must be 1+1+1=3 people. See Graph on https://www.bayraklimemetkinlikleri.com/basvuru-toplamlari/ and find 'Zeka Oyunları Yarışması - İLÇELER' there are 2 applications but it shows as 3 because I use number section in the database. Please see also screenshots,
Hello sahinozyurek.
This is a row ID column, I believe. If you wish the chart to see each row as "1", you need to add a new integer column, which would have a predefined value set to "1". Then, you can hide that column from front end but still be able to use it in the chart.
It will be used just the way you wish.
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
Hi Alexandar,
Many many thanks. I did it as you described and it worked :) there is even 'Hide from frontend' option, so when you take pdf or excel that column is not shown. Perfect
There is one more problem as you can see in the screenshots: there are empty cells in the database but while building graph it counts empty cells as percentage and also as value. How can I omit it from percentages? So it should not be calculated. Later I used logic and put 0 (zero) for cell, but graph is still the same, because it is also calculated as a value, empty or zero is calculated as somebody chose an option, but there is no option chosen. Graph constructed still the same. Empty cells come because of logical choices in the application form filled by applicants. So there will be more empty cells as more forms arrive. If student is 1 or 2nd grader two options displayed if they are 3 or 4th graders another 2 options displayed so on. Currently 3 people applied 2 of them 1 or 2 nd graders, 1 is 3 or 4th grader. In the database there are 2 values for Mangala and Q bitz games and empty cell is created because another game is selected for 3 or 4th graders. Thank you
Here is what I mean in the screenshot.
Hi again sahinozyurek.
Glad to hear that helped.
As for the zero - yeah that is an issue we've been dealing with, because integer and float columns cannot have anything other than numbers in them, the plugin is treating an empty cell as "0"
I can try and help you out, but you have to make some changes in code in file :
/wp-content/plugins/wpdatatables/source/class.wpdatachart.php around line 1629:
and replace it with this
With these changes you will get charts like on the first screenshot below.
If you want to make charts like on screenshot #2 you have to use wpdatachart callbacks and insert that on page where your chart is.
One more thing you have to change in this callback number 39 in (wpDataChartsCallbacks[39]) to id of the chart that you use on page.
This will be overwritten on next update so you have to come back here and do it again.
I hope this helps.
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
Hi Alexandar,
I tried the codes you sent, it does not change the graphs and when I add the javascript code on page and change callback ID, it totally breaks the code. Whichever chart ID I write it blocks charts from that point on until the last chart. If I write 4, it blocks 4, 5 , 6 ... ; if I write 5 it blocks 5,6,7.... and the results are still wrong, taking empty cells into consideration. I use pie chart by the way for those parts. See actual situation on: https://www.bayraklimemetkinlikleri.com/basvuru-toplamlari/ Please search for 'Mangala' so you will see the screenshot I attached. Red colour is empty value. On that page results of graphs come from 3 different datatables. I don't know if that blocks new code from running.
Hello again sahinozyurek.
The callback I showed you is just an example, and it is for Highcharts (I believe). Different engines have different approach to chart settings, so callbacks are a bit different as well.
I can try and help you out, but please note that using hooks or wpdatatable and wpDataChart callbacks requires certain level of programming skills and included support refers only to advice.
Please provide me a temporary WP-admin login for your site where this happens, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue. We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course we do not provide login data to third party. You can write credentials here just check Private Reply so nobody can see them except us.
Also, make sure to tell me what are the table and chart IDs so I know where to look.
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
Hello again sahinozyurek.
When I look at the pie chart 6 I see that the value that is not displayed is actually a string, not the integer (value) column.
I'm not sure the callback I shared with you could be used for that - it was intended to use to skip the values (in your case "1"), so it doesn't need to be skipped.
Also, The other chart has only two values:
If you were to hide the blue - it would show Koridor at 100%.
Can you create these two charts in Excel or something similar, and show me what they're supposed to look like.
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
Hi Aleksandar,
Yes you wrote "If you were to hide the blue - it would show Koridor at 100%." thats what I want. There is no option defined for blue, in database it is empty cell. But it calculates as there is value.
In the application form if teacher chooses 1 or 2 nd calsses, he/she can see 2 games as option, if he/she chooses 3 or 4th classes he/she can see other 2 options, if he/she chooses 5 or 6th classes he/she can see other 2 options, if he/she chooses 7 or 8th classes he/she can see other 2 options. If we see them on table please see example table.pdf. Every form is for 1 person. We need to see result totals for every group (1 and 2 nd class is a group).
I also add screenshots of the form (1, 2, 3, 4, 5.png). So empty cells must not be taken into consideration when we make graph of the data column. They must not be calculated. Kind regards
I also add example graph for the first column as attachement.
Good morning,
I also checked database data type for those columns, as you can see in the screenshot they are text.
Alright sahinozyurek
I believe we understand each other now.
This would actually be a lot easier to do.
For example, I'll take the same chart mentioned before: Zeka Oyunları Yarışması - İlkokul 3-4 - Toplam Başvuru Sayıları
When you get to select the columns, enable the range picker:
When you click on Range Picker, you can select the columns and rows you wish to plot in the chart:
So, after I picked those, that chart was generated like this:
I didn't apply those changes, though. Please go in your charts, and when you get to the Data range, select the Range Picker and choose the columns and rows you wish to plot on the chart, and I believe you will be able to display it correctly.
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
Hi Alexandar,
That's exactly what I needed but there will be hundereds of applications and the list will grow. It should be done by the system. All I need is "not taking into consideration empty cells". There must be a rule to define it. If the cell is empty don't calculate, that's it. I cannot do te graph manually because every day people will apply and cells will increase to hundereds. Also if I do it manually I can do it easily on Excel. All the best
After reading some SQL articles, I think the missing part in the plugin is: including logic statements section while building charts. If cells empty '' or null 'null' do not calculate etc.
There is such kind of a section in eforms. I attach screenshot of that page. I hope it will be useful.
Hello again sahinozyurek
Thank you for your suggestion. We carefully follow customers requirements and try to implement most of them if they appear in requests from time to time, so we will add to our idea list and look into some possible solutions on plugin side in the future.
Unfortunately, skipping NULL string values simply isn't included in the plugin's features. I tried a workaround like I suggested for 'int' and 'float' but it doesn't work like that.
Although, I believe this can be done with custom callbacks, but like I mentioned before - this isn't included in the support of the plugin and is considered custom solution.
I do hope our developers will be able to include the skip NULL values soon, though.
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
Hi Aleksandar,
I am sure they will find a quick fix as this is not a custom feature but this is an error in the plugin. If they just add a section to write SQL commands or rules, it will fix this. It is not a big thing for a developer, I worked with good developers before, they find solutions fast. All the best,
Hi again sahinozyurek
Just to let you know, the suggestion has been forwarded to one of our developers.
As soon as I hear back from him, I will let you know.
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
Hello again sahinozyurek.
I believe we got it sorted out.
Please open wp-content/plugins/wpdatatables/assets/js/wpdatatables/wdt.googleCharts.js and after this:
around line 141 add this line of code:
So it looks like this:
Please note, though, that this is a quick-fix and you will need to save my reply and do this again when the plugin updates.
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
Many thanks for your answer Aleksandar. Now the form is live so we had to delete data. But I will create a copy and let you know the result as soon as possible. All the best,
Sounds like a deal, sahinozyurek.
You're welcome. I hope the issue is resolved.
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
Hi again Aleksandar,
Unfortunately it still shows graph the same. See the bottom of the page, https://www.bayraklimemetkinlikleri.com/test2/, orange colour is empty value, it must not be shown or calculated.
Hi again sahinozyurek.
Alright, then. I'll forward it to one of our developers, so he can take a look at it again.
Thank you for your patience.
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
Hello again sahinozyurek.
I forgot to mention that you should disable "Use minified wpDataTables Javascript" slider in main settings of wpDataTables/Custom JS and CSS:
And also clear your cookies.
Please try this and let me know if it works.
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
Hi Aleksandar,
It is still the same. All the best,
Hi again sahinozyurek.
It works on our end, so I'm not exactly sure what's going on, on your side.
Can you, please, either enable the Plugin Editor within WordPress, or provide me with FTP credentials, so we can take a look at our plugin's code?
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
Hi again sahinozyurek.
Thanks for the FTP, but it appears to be FTP to access logs:
I went into each of these folders, and couldn't find public_html, or anything similar where I'd be able to access wpDataTables code, through ../wp-content/plugins/wpdatatables.
Can you, please check that, and let me know?
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
Hi Aleksandar,
public_html is for Cpanel servers, my server is plesk so 'httpdocs' is the web folder. Inside it you can see wp-content>plugins>wpdatatables etc. My FTP client shows wp-content file at the bottom of the page maybe that's why you couldn't notice that file.
Hello again sahinozyurek.
Thanks for that. I found it.
Now, I mentioned when I sent you the code, that it is a hot-fix, and that you would need to apply it again after the plugin is updated. When I opened ..wp-content/plugins/wpdatatables/assets/js/wpdatatables/wdt.googleCharts.js I saw that the fix was not there:
So, I added it, and saved the file:
After that I opened the https://www.bayraklimemetkinlikleri.com/test2/ page in incognito mode, and saw that the empty value has been skipped:
However, when I open the same page while logged into WordPress, it is still displaying the empty value:
This indicates that there are probably some settings in your caching plugin other than what's displayed on the page. You need to delete all cache on your website, and you will see it like another customer does (for me - incognito mode).
Please let me know.
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
Hi Aleksandar,
Nowadays I received so many emails that I can write to you late. Many thanks for your help, you are right, I don't know the reason but it shows as you mentioned when logged in. I think this solves the problem. It took long but the solution is very good. All the best,
Hi again sahinozyurek.
You're welcome, glad I could help.
If you have any further questions or issues, please feel free to open a new ticket, and we'll gladly help.
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