I am using following function to round up the price in wordpress..
add_filter( \'woocommerce_get_price_excluding_tax\', \'round_price_product\', 10, 1 ); add_fil
You can achieve the same by simply using the php round() function as like this :
round()
function round_price_product( $price ){ // Return rounded price return round( $price ); }
Hope it works for you.