Cómo redondear el precio a 50 centavos
Utilice este gancho: https://currency-switcher.com/hook/woocs_raw_woocommerce_price/
Vieja forma:
Abrir el archivo index.php del complemento, busque public function raw_woocommerce_price($price) y en cambio
return $ precio;
escribir:
$ precio = round ($ precio * 2, 0) / 2; return $ precio;
https://stackoverflow.com/questions/11692770/rounding-to-nearest-50-cents