This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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; |