{"id":54974,"date":"2020-01-24T16:14:58","date_gmt":"2020-01-24T15:14:58","guid":{"rendered":"https:\/\/samuelchopard.ch\/wiki\/?p=54974"},"modified":"2020-01-24T16:16:51","modified_gmt":"2020-01-24T15:16:51","slug":"round-the-cart-total-in-woocommerce-to-the-nearest-0-05-cents","status":"publish","type":"post","link":"https:\/\/samuelchopard.ch\/wiki\/library\/round-the-cart-total-in-woocommerce-to-the-nearest-0-05-cents\/","title":{"rendered":"Round the cart total in WooCommerce to the nearest 0.05 cents"},"content":{"rendered":"<p><!--more--><\/p>\n<p>Paste the following in functions.php:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">\/* round cart total to nearest 0.05 cent *\/\r\nadd_filter( 'woocommerce_calculated_total', 'custom_calculated_total' );\r\nfunction custom_calculated_total( $total ) {\r\n$total = round($total \/ 0.05) * 0.05;\r\nreturn ($total);\r\n}<\/pre>\n<p>Sources: <a target=\"_blank\" href=\"https:\/\/stackoverflow.com\/questions\/50241524\/round-up-cart-total-woocommerce\/50242494\">https:\/\/stackoverflow.com\/questions\/50241524\/round-up-cart-total-woocommerce\/50242494<\/a>, <a target=\"_blank\" href=\"http:\/\/martinpennock.com\/blog\/round-nearest-5-cents-nickel-php\/\">http:\/\/martinpennock.com\/blog\/round-nearest-5-cents-nickel-php\/<\/a>, <a target=\"_blank\" href=\"https:\/\/www.php.net\/manual\/en\/function.ceil.php\">https:\/\/www.php.net\/manual\/en\/function.ceil.php<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"Paste the following in functions.php: \/* round cart total to nearest 0.05 cent *\/ add_filter( 'woocommerce_calculated_total', 'custom_calculated_total' ); function custom_calculated_total( [...]","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[52,251,301,327],"class_list":["post-54974","post","type-post","status-publish","format-standard","hentry","category-woocommerce","tag-cart","tag-round","tag-total","tag-woocommerce"],"_links":{"self":[{"href":"https:\/\/samuelchopard.ch\/wiki\/wp-json\/wp\/v2\/posts\/54974","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/samuelchopard.ch\/wiki\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/samuelchopard.ch\/wiki\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/samuelchopard.ch\/wiki\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/samuelchopard.ch\/wiki\/wp-json\/wp\/v2\/comments?post=54974"}],"version-history":[{"count":2,"href":"https:\/\/samuelchopard.ch\/wiki\/wp-json\/wp\/v2\/posts\/54974\/revisions"}],"predecessor-version":[{"id":54978,"href":"https:\/\/samuelchopard.ch\/wiki\/wp-json\/wp\/v2\/posts\/54974\/revisions\/54978"}],"wp:attachment":[{"href":"https:\/\/samuelchopard.ch\/wiki\/wp-json\/wp\/v2\/media?parent=54974"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/samuelchopard.ch\/wiki\/wp-json\/wp\/v2\/categories?post=54974"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/samuelchopard.ch\/wiki\/wp-json\/wp\/v2\/tags?post=54974"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}