Title: Decimal Value
Last modified: May 6, 2021

---

# Decimal Value

 *  Resolved [eilidhn](https://wordpress.org/support/users/eilidhn/)
 * (@eilidhn)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/decimal-value-2/)
 * Is there any way to hide the decimal value from the amount in the basket?
 * Thanks in advance
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fdecimal-value-2%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Plugin Contributor [alexmigf](https://wordpress.org/support/users/alexmigf/)
 * (@alexmigf)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/decimal-value-2/#post-14412256)
 * Hi [@eilidhn](https://wordpress.org/support/users/eilidhn/)
 * Please add the code snippet below to your theme functions.php file:
 *     ```
       add_filter( 'wpmenucart_menu_item_data', function( $menu_item ) {
       	if( isset( $menu_item['cart_total'] ) ) {
       		$arr = explode( ',', $menu_item['cart_total'] );
       		$menu_item['cart_total'] = $arr[0];
       	}
       	return $menu_item;
       }, 10, 1 );
       ```
   
 * If you never worked with actions/filters please read this documentation page:
   [How to use filters](https://docs.wpovernight.com/general/how-to-use-filters/)

Viewing 1 replies (of 1 total)

The topic ‘Decimal Value’ is closed to new replies.

 * ![](https://ps.w.org/wp-menu-cart/assets/icon-256x256.png?rev=2190480)
 * [WP Menu Cart](https://wordpress.org/plugins/wp-menu-cart/)
 * [Support Threads](https://wordpress.org/support/plugin/wp-menu-cart/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-menu-cart/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-menu-cart/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-menu-cart/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [alexmigf](https://wordpress.org/support/users/alexmigf/)
 * Last activity: [5 years, 1 month ago](https://wordpress.org/support/topic/decimal-value-2/#post-14412256)
 * Status: resolved