Title: Problem with decimal
Last modified: September 10, 2020

---

# Problem with decimal

 *  Resolved [simonbrandstrom](https://wordpress.org/support/users/simonbrandstrom/)
 * (@simonbrandstrom)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/problem-with-decimal/)
 * Hey!
    My costumer has problems to remove the decimals on here price. Now it stands
   699,00 SEK but she wont it to be 699 SEK. I have tried to fix it in the settings
   on WooCommerce. And there change it to “0” but nothing change.
 * Do we make something wrong or is it a bug?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fproblem-with-decimal%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  [Peter Lawrenson](https://wordpress.org/support/users/lorro/)
 * (@lorro)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/problem-with-decimal/#post-13387466)
 * Try this snippet:
 *     ```
       // WooCommerce - remove cents
       add_filter( 'wc_price', 'my_price', 3, 60 );
       function my_price( $return, $price, $args ) {
         $price = str_replace( ',', '', $price );
         return intval( $price ).' SEK';
       }
       ```
   
 * Goes in functions.php for your child theme or you can try a snippets plugin.
 *  [Missy a11n](https://wordpress.org/support/users/m155y5/)
 * (@m155y5)
 * Automattic Happiness Engineer
 * [5 years, 7 months ago](https://wordpress.org/support/topic/problem-with-decimal/#post-13421949)
 * Hi [@simonbrandstrom](https://wordpress.org/support/users/simonbrandstrom/) –
 * Lorro offered a good suggestion and because we haven’t heard back from you in
   a while, I’m going to go ahead and mark this thread as resolved. If you have 
   any other questions please feel free to start a new thread.

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

The topic ‘Problem with decimal’ 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

 * [decimals](https://wordpress.org/support/topic-tag/decimals/)
 * [price](https://wordpress.org/support/topic-tag/price/)
 * [product](https://wordpress.org/support/topic-tag/product/)

 * 2 replies
 * 3 participants
 * Last reply from: [Missy a11n](https://wordpress.org/support/users/m155y5/)
 * Last activity: [5 years, 7 months ago](https://wordpress.org/support/topic/problem-with-decimal/#post-13421949)
 * Status: resolved