We are very happy with wpDataTables, it's a great plugin!
Actually I tried to set up a new project and wpDataTables is one of the needed plugins. We created an import from an external source and read the data in wordpress with wpdt. But we have a problem with the round brackets in combination with the checkbox filter. There are no matches found when the choosen option contains a round bracket. Is this possible a bug?
Checkbox does exact match so that is why you can't find the match for your search. For server side tables this is not a big change but for non server side tables it requires some customization. Can you please send me a link so I can take a look.
thank you for the quick answer! I can't show you the real data, because its not public. But I created a test page to show you the problem: http://wordpress.lueckmedia.de/checkbox-test/
I don't now exactly what you mean with exact, because we don't predefine values for the checkbox! wpDataTables autofill it with all values from the database. In our test environment this works with category "Test" but not with "Test (T)". I hope you know, what I mean and can help :-)
As you can see in the attachment the checkbox searching is working. I notice that you have some error on your page ( Attachment 2) and in category field you entered space after Test (T).
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.
If you can't give me credentials can you please give me screenshots of Optional column setup.
We changed some code and now the checkbox is working on front end. But first can you please change your theme for example on native WordPress because I can't see table on page (Attachment) then bring it back to normal?
that's great, thank you very much! I can still see the table, don't know why it's now showing on your screen. I switched to Wordpress Twenty Ten theme. You can now have another look, if you would like to.
Can you also tell me which file was changed? Do we need to pay attention with you change on coming updates?
We are glad to see that the table is working now (Attachment). In ../wpdatatables/assets/js/jquery-datatables/jquery.dataTables.columnFilter.js around line 972 there was this code
I'm sorry to write you again about this problem. In our live system the fix is not working :( It was working for the very first test I made but when I load the page the second time, the problem was the same than before.
We switched the test system back to our Avada Theme, because we're using the same version in our live system.
Could the use of a multi site envoirement or WPML be the reason?
As I can see your site i working fine with no errors and the checkbox is working also. (Attachment). Can you please send me a link where you have that problem so I can take a look.
I am not sure that environment or WPML can be the reason but it shouldn't be the problem.
today I found the solution. It's simple but you have to know where to search ;-) Our real site used the setting "Use minified js" in the "Custom JS and CSS" Tab, the test site not. So your fix works and we can set this theme to solved ;) Perhaps this helps other users, too. Can you tell me if this change will also come in the new version, we can switch back to min.js ?
We are glad that issue is solved and the checkbox is working. We will include this in future updates so if you have any problems feel free to open a new ticket.
If you like our plugin and support please rate our plugin at CodeCanyon on this link. It means a lot to us. Thanks.
We are very happy with wpDataTables, it's a great plugin!
Actually I tried to set up a new project and wpDataTables is one of the needed plugins. We created an import from an external source and read the data in wordpress with wpdt. But we have a problem with the round brackets in combination with the checkbox filter. There are no matches found when the choosen option contains a round bracket. Is this possible a bug?
Kind regards
Marco
Hi LueckMedia,
Thank you for your purchase.
Checkbox does exact match so that is why you can't find the match for your search.
For server side tables this is not a big change but for non server side tables it requires some customization.
Can you please send me a link so I can take a look.
Kind Regards,
Miloš Jovanović
[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 Bogda,
thank you for the quick answer! I can't show you the real data, because its not public. But I created a test page to show you the problem: http://wordpress.lueckmedia.de/checkbox-test/
I don't now exactly what you mean with exact, because we don't predefine values for the checkbox! wpDataTables autofill it with all values from the database. In our test environment this works with category "Test" but not with "Test (T)". I hope you know, what I mean and can help :-)
Kind regards
Marco
Hi LueckMedia,
As you can see in the attachment the checkbox searching is working.
I notice that you have some error on your page ( Attachment 2) and in category field you entered space after Test (T).
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.
If you can't give me credentials can you please give me screenshots of Optional column setup.
Kind Regards,
Miloš Jovanović
[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 LueckMedia,
We changed some code and now the checkbox is working on front end.
But first can you please change your theme for example on native WordPress because I can't see table on page (Attachment) then bring it back to normal?
Kind Regards,
Miloš Jovanović
[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 Bogdan,
that's great, thank you very much! I can still see the table, don't know why it's now showing on your screen.
I switched to Wordpress Twenty Ten theme. You can now have another look, if you would like to.
Can you also tell me which file was changed? Do we need to pay attention with you change on coming updates?
Best wishes
Marco
Hi LueckMedia,
We are glad to see that the table is working now (Attachment).
In ../wpdatatables/assets/js/jquery-datatables/jquery.dataTables.columnFilter.js around line 972 there was this code
search = search + $(this).val().replace(/\+/g,'\\+') + or;
We replace it with this one
search = search + '^' + $(this).val().replace(/\+/g,'\\+').replace(/\(/g,'\\(').replace(/\)/g,'\\)') + '$' + or;
Currently we are testing this functionality and we will implement it in future versions of our plugin.
But just in case, please back up this solution.
We are glad to help.
If you like our plugin and support please rate our plugin at CodeCanyon on this link. It means a lot to us. Thanks.
Kind Regards,
Miloš Jovanović
[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
Great to hear, very good! So I think the thread can be marked as solved.
I have just left a 5-star review for the great support at CodeCanyon :-)
Hi Bogdan,
I'm sorry to write you again about this problem. In our live system the fix is not working :( It was working for the very first test I made but when I load the page the second time, the problem was the same than before.
We switched the test system back to our Avada Theme, because we're using the same version in our live system.
Could the use of a multi site envoirement or WPML be the reason?
Kind regards
Marco
Hi LueckMedia,
As I can see your site i working fine with no errors and the checkbox is working also. (Attachment).
Can you please send me a link where you have that problem so I can take a look.
I am not sure that environment or WPML can be the reason but it shouldn't be the problem.
Kind Regards,
Miloš Jovanović
[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 Bogdan,
today I found the solution. It's simple but you have to know where to search ;-) Our real site used the setting "Use minified js" in the "Custom JS and CSS" Tab, the test site not. So your fix works and we can set this theme to solved ;) Perhaps this helps other users, too. Can you tell me if this change will also come in the new version, we can switch back to min.js ?
Best wishes
Marco
Hi LueckMedia,
We are glad that issue is solved and the checkbox is working.
We will include this in future updates so if you have any problems feel free to open a new ticket.
If you like our plugin and support please rate our plugin at CodeCanyon on this link. It means a lot to us. Thanks.
Kind Regards,
Miloš Jovanović
[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