Hi,
You can use the following code in the Child theme’s functions.php file or in a Code Snippet plugin.
function remove_thousand_separator_pagination($output) {
$output = str_replace(',', '', $output);
return $output;
}
add_filter('paginate_links', 'remove_thousand_separator_pagination');
Give it a try, and let me know how that goes!
Thread Starter
yarr2
(@yarr2)
Actually I think this is not what I’m looking for. It would be much better to find a global setting related to number format or localization settings, since formats are taken from locale configuration.