Before proceed to checkout you must add some products to your shopping cart.
You will find a lot of interesting products on our "Shop" page.
You will find a lot of interesting products on our "Shop" page.
// Cap WooCommerce average rating to the valid 1..5 range and return one decimal add_filter( 'woocommerce_product_get_average_rating', 'fix_woocommerce_average_rating_clamp', 10, 2 ); function fix_woocommerce_average_rating_clamp( $rating, $product = null ) { $rating = floatval( $rating ); $min = 1.0; $max = 5.0; $rating = max( $min, min( $max, $rating ) ); return round( $rating, 1 ); }
No account yet?
Create an Account