I set up BitPay and have the API working. My site is showing prices in GBP but the currency is not being taken into account processing through BitPay. Is this normal?
I set up BitPay and have the API working. My site is showing prices in GBP but the currency is not being taken into account processing through BitPay. Is this normal? |
Hello Current integration supports USD, EUR, BTC currencies only. Looks like a list of currencies supported by BitPay was broaden and now it supports 9 including GPB. So, you may try to edit module/boonex/payment/classes/BxPmtBitPay.php file and find the following code switch ($aCartInfo['vendor_currency_code']) { Add one more case with GPB (case 'GPB':). You should have the following switch ($aCartInfo['vendor_currency_code']) { I think it should help. |
Thank you. I made that change but I also made a change which I documented in another topic. |