Title: Feature request &#8211; rounding precision
Last modified: April 6, 2017

---

# Feature request – rounding precision

 *  Resolved [Outerbridge](https://wordpress.org/support/users/outerbridge/)
 * (@outerbridge)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/feature-request-rounding-precision/)
 * Hi
 * I have many small products which means that when a coupon is applied the rounding
   is not accurate enough (using GBP with 2 decimal places being displayed). This
   means I need `wc_get_rounding_precision()` to return 6 rather than 4.
 * I can’t see a way of doing this as WC_ROUNDING_PRECISION is a constant 4, so 
   would it be possible to add a filter to `wc_get_rounding_precision()` please?
 * E.g.
 *     ```
       function wc_get_rounding_precision() {
       	$precision = wc_get_price_decimals() + 2;
       	if ( absint( WC_ROUNDING_PRECISION ) > $precision ) {
       		$precision = absint( WC_ROUNDING_PRECISION );
       	}
       	apply_filters( 'woocommerce_rounding_precision', $precision );
       	return $precision;
       }
       ```
   
 * Many thanks! A great plugin.
    Mike

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Contributor [Mike Jolley](https://wordpress.org/support/users/mikejolley/)
 * (@mikejolley)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/feature-request-rounding-precision/#post-9000505)
 * Just set the WC_ROUNDING_PRECISION constant in your wp-config file.
 *  Thread Starter [Outerbridge](https://wordpress.org/support/users/outerbridge/)
 * (@outerbridge)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/feature-request-rounding-precision/#post-9000638)
 * Of course – brain fade this morning! Thanks Mike.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Feature request – rounding precision’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

## Tags

 * [precision](https://wordpress.org/support/topic-tag/precision/)

 * 2 replies
 * 2 participants
 * Last reply from: [Outerbridge](https://wordpress.org/support/users/outerbridge/)
 * Last activity: [9 years, 2 months ago](https://wordpress.org/support/topic/feature-request-rounding-precision/#post-9000638)
 * Status: resolved