Intuit Payments/QBMS Ağ Geçidi
Eklenti bağlantısı: https://woocommerce.com/products/intuit-qbms/
Tarafından çözüldü: https://wordpress.org/support/topic/intuit-paymentsqbms-gateway-support/
Bozukluğu: PayPal gibi birden fazla ödeme ağ geçidi kullanıyorum Müşterilerin istedikleri gibi CAD veya USD ile ödeme yapmalarına izin vermek istiyorum ancak Intuit Payments/QBMS Gateway yalnızca USD ücret alıyor
Geçerli wp temasının functions.php dosyasına bir sonraki kodu ekleyin:
add_filter('wc_payment_gateway_intuit_qbms_get_order_base', 'intuit_qbms_return_currency_to_usd', 10, 1); function intuit_qbms_return_currency_to_usd($sipariş) { global $WOOCS; if ($WOOCS) { $currencies = $WOOCS->get_currencies(); $current_currency = $WOOCS->current_currency; $usd_total = $WOOCS->back_convert($order->get_total(), $currencies[$current_currency]['oran'], 2); $sipariş->payment_total = sayı_format($usd_total, 2, '.', ''); } $sipariş döndür; }
bu, Intuit Payments/QBMS Gateway'e gönderilmeden önce toplamı USD'ye çevirecektir..