Open index.php of the plugin, find public function raw_woocommerce_price($price) and instead
1 | return $price; |
write:
1 2 | $price = round($price * 2, 0) / 2; return $price; |
http://stackoverflow.com/questions/11692770/rounding-to-nearest-50-cents
Also you can try to use this hook: https://currency-switcher.com/hook/woocs_raw_woocommerce_price/
