Skip to content

Instantly share code, notes, and snippets.

View msabolik's full-sized avatar

Marko Sabolić msabolik

View GitHub Profile
@msabolik
msabolik / woocs-round-last-digit
Last active March 1, 2019 16:38
Code to round MKD currency simple and variable price last full digit to zero for WooCommerce Currency Switcher plugin.
<?php // Do not copy this line
// WooCommerce Currency Switcher snippet to round MKD currency simple price last full digit to zero.
global $WOOCS;
if($WOOCS->current_currency=="MKD") {
add_filter('woocs_raw_woocommerce_price', function($price) {
if (($price <= 10))
{
$price = round($price / 10, 0) * 10;