I’m also on WP all import and love this very effective plugin.
The rounding function that you offer on your wpallimport.com site works very well.
function round_price( $price = null, $multiplier = 1, $nearest = .01, $minus = 0 ) {
if ( !empty( $price ) ) {
// strip any extra characters from price
$price = preg_replace("/[^0-9,.]/", "", $price);
// perform calculations
return ( round ( ( $price * $multiplier ) / $nearest ) * $nearest ) - $minus;
}
}
As I live in Switzerland, I just have to round the prices to 5 cents … I offer discounts of 15% so if the price is 25.20 CHF, it becomes 21.42 CHF. I have to find a solution to fall on CHF 21.40.
Do you have an idea ?