Don’t display prices with 0 decimals in WooCommerce

Decimals in WooCommerce

Under General settings in WooCommerce there is a section called Currency options. Here you can set the store currency and how the currency symbol should be positioned. There is also a setting that lets you choose how many decimal points you want prices to be displayed with.

At a first glance this setting only appear to be a display option. A setting that makes your prices look a little bit fancier. But to set the decimals to 0 can cause some real problems for you and your store.

Decimals in WooCommerce

When you set the number of decimals to 0 WooCommerce starts rounding product prices. Or to be a bit more specific – the ratio between the net pice and the VAT. If you are using a payment gateway that sends each order row individually to the payment provider, or have an extension that connects to your accounting/erp system, then the calculation of order total might differ between the systems.

Why doesn’t the payment gateways calculate as WooCommerce?

You might think that this is something we as extension developers should solve so that the figures added to the WooCommerce order is the same as the ones sent to the payment provider.

The problem is that when the price for a product is rounded and stored in the order it can be difficult to recreate the same kind of rounding in an external system. Let me give you an example.

Time for some math

A product has the price of 49 EUR including 25% VAT. This means a net price of 39.2 with a tax of 9.8 EUR. If you set the decimal points to 0, WooCommerce will round this to a net price of 39 and and a tax of 10.

If we now imagine a payment provider who wants us to send each order row with the product price excluding tax plus the tax rate, this would mean 39 and 25%. But if you add 25% to 39 you will get a price including tax that equals 48,75.

In many cases when each order line is sent to the payment provider, order total is also sent as a parameter. When the sum of the order rows is compared to order total, these two figures don’t match. Usually the payment provider answers with an error message and the purchase can’t be finalized.

Order row quantity and coupons

In some cases it will work with this type of rounding. Instead problems might occur if the customer buys a number of items of a specific product. The payment provider usually wants the unit price plus the number of items purchased but WooCommerce does the rounding after the entire order row has been calculated. Another scenario that could cause similar problems is when using coupons.

But I don’t want to display decimals in my store – how do I do?

Luckily there are ways to avoid displaying decimals a long as it’s about prices with whole numbers (integers). Set the decimal points to 2 in the currency settings and then add this code snippet to your themes functions.php or or in a separate plugin.

/**
 * Trim zeros in price decimals
 **/
 add_filter( 'woocommerce_price_trim_zeros', '__return_true' );

With this code 49,00 will be displayed as 49. If you only have prices with whole numbers in your store and you’re displaying prices including VAT, then it’s only the VAT that actually will be displayed with 2 decimals. This results in a more correct calculation of prices and VAT in your store while you don’t have to display unnecessary decimal points.

Simply a win-win situation 🙂

This article was originally written in November 2015 but was updated in August 2021.

5 thoughts on “Don’t display prices with 0 decimals in WooCommerce

  1. Hei Niklas!

    Dette er en genial work-around. Hos eg gir det likevel bare effekt på mini-cart, ikke på product-categories eller single product. Har du noen idé om hvorfor?

    Mvh,
    André Giæver
    Human Web/Nettpilot

    1. Hej André, tack för kommentaren!
      Om det bara blir ändringar på vissa ställen så kan det bero på det tema du använder (om det använder egna template-filer för WooCommerce). Du skulle kunna testa att tillfälligt växla till WooThemes eget (gratis)tema Storefront och se om det blir någon skillnad.

  2. Hej!

    Kanon! Skulle vart gött med en CSS-kod också 🙂 Då slipper man ändra varje gång temat eller Woocommerce uppdaterar functions.php

    Är det något som kan uppdateras i artikeln så hade det vart kanon! Tack på förhand

    1. Halloj Jens, eftersom det rör sig om en filter-hook som ändrar hur priset visas så ska det inte behövas någon css-ändring för att få det att fungera. Om du inte vill lägga in koden i ditt temas functions.php-fil eftersom det kan bli överskrivet när du uppdaterar temat så kan jag exempelvis rekommendera det här pluginet för att lägga till mindre kodändringar av det här slaget: https://wordpress.org/plugins/code-snippets/

Comments are closed.

Featured WooCommerce plugins

featured-shipping-connector

Krokedil Shipping Connector

Book deliveries with nShift directly from WooCommerce with Krokedil Shipping Connector when you let your customers choose how and where the delivery is made with nShift Checkout or Klarna Shipping Assistant.
featured-post-purchase-upsell

Post Purchase Upsell for WooCommerce

With Post Purchase Upsell, the customer can add additional products to their order after a completed purchase. They easily choose which of the selectable products they want to add and update their order with one click.
featured-partial-delivery

Partial Delivery for WooCommerce

Partial Delivery for WooCommerce enables merchants to ship parts of an order. Via a logical interface you are able to send one or several items in each delivery.
Top