Hello guys.
We have an issue with the import regarding the number format, and our developers are working on resolving it for our next update.
We apologize for the inconvenience this may have caused, but as @silvianuciforo mentioned – the workaround that you can use for now is changing the number format in the plugin. It’s not a perfect solution, but at the moment it’s a solution that works.
Also, there’s another fix you guys can try. Please go to wp-content/plugins/wpdatatables/source/class.wpdatatable.php and on line 1228 you will find this:
$dataRow[$key] = str_replace(',', '.', str_replace('.', '', $dataRow[$key]));
Replace it with this:
$convertToFloat = (float)(str_replace(',', '.', str_replace('.', '', $dataRow[$key])));
if ($convertToFloat > 999){
$dataRow[$key] = str_replace(',', '.', str_replace('.', '', $dataRow[$key]));
} else {
$dataRow[$key] = str_replace(',', '.', $dataRow[$key]);
}
This only works for the display, but the filters continue to work as they worked before because the filtering of numbers is specific. Our developers will test this thoroughly before adding it to the update, so please save my response in case it doesn’t make it into our next update, so you can go back into these files and make these changes again.
Please note that this fix applies to the Lite version of the plugin – if you’re using the full version, please note that we can’t provide support for it on this forum, so we’ll ask you to open a ticket on our official support platform if you’re using the full version.
Kind regards