woocs_price_decimal_sep
İş mantığına göre woocommerce fiyat ondalık ayırıcısını manipüle etmeye izin verir (örnek ülkeler). Örnek:
add_filter('woocs_price_decimal_sep', function($separator, $currency) { $wcgi = WC_Geolocation::geolocate_ip(); //woocommerce API // ülke kodu için BÜYÜK HARF! anahtarı ($wcgi['ülke']) { case 'US ': $separator = ','; break; case 'GB': $separator = '.'; break; case 'JP': $separator = ''; break; } return $separator; },10,2);
Şunlarla birlikte çalışır: woocs_price_thousand_sep
v.2.3.6/v.1.3.6'dan itibaren