Cart totals
Subtotal | $1,759.00 |
---|---|
Shipping | Enter your address to view shipping options. |
Total | $1,759.00 |
// 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 ); }
Subtotal | $1,759.00 |
---|---|
Shipping | Enter your address to view shipping options. |
Total | $1,759.00 |
No account yet?
Create an Account