I have a plugin that is used to sort Wordpress posts based on a custom field. This field is a price field. The plugin works perfectly for all country that use euro and usd. I have a client who is from Holland which uses euro but have special characters to define cents. These special characters have thrown a wrench into the plugin where it is causing sort errors.
Here is the MySQL code to retrieve and sort by price:
function price_sort_it() {
global $wpdb, $thisorder;
if($thisorder == 'price-lowest') {
$this_order = 'ASC';
}
else if($thisorder == 'price-highest') {
$this_order = 'DESC';
}
return "(SELECT CAST(REPLACE(REPLACE(REPLACE($wpdb->postmeta.meta_value, ',', ''), '€',''),' ','') AS SIGNED)
FROM $wpdb->postmeta
WHERE $wpdb->posts.ID = $wpdb->postmeta.post_id
AND $wpdb->postmeta.meta_key = 'ad_price')" . $this_order;
}
add_filter('posts_orderby', 'price_sort_it');
This code removes the thousand comma separator and also removes the currency symbol before the sort. It works flawlessly.
The issue is that the Holland client has ads with prices like this:
- € 5
- € 5,-
- € 5,00
Along with normal values like:
- € 10,000
- € 500.29
- € 10
Where the comma represents a decimal and the comma and negative represent an abbreviation of decimal and 2 zeros.
Any words of the wise on how to tackle this feat?