Mandala Posted September 23, 2010 Share Posted September 23, 2010 HiDoes anyone know if there's a way of excluding specific payment methods by zone? For example, I only want to accept bank transfer from the UK, and not from any other country/zone.Thanks Link to comment Share on other sites More sharing options...
tomerg3 Posted September 23, 2010 Share Posted September 23, 2010 Yes it can be done, but requires some changes.Edit /modules/bankwire/bankwire.php and change public function hookPayment($params) { if (!$this->active) return ; To public function hookPayment($params) { if (!$this->active) return ; $address = new Address(intval($params['cart']->id_address_invoice)); $country = new Country(intval($address->id_country)); if ($country->iso_code != 'UK') return; This will check that the customer is from the UK, and if not, it will not show this payment method.It can be used for any payment method. Link to comment Share on other sites More sharing options...
BockBockBock Posted September 23, 2010 Share Posted September 23, 2010 I assume I can leave 'UK' as it is, and I don't have to change it to "United Kingdom" (which is what the zone is called)?Thank you! Link to comment Share on other sites More sharing options...
tomerg3 Posted September 23, 2010 Share Posted September 23, 2010 no zone, but country, and it's using the 2 letter iso code Link to comment Share on other sites More sharing options...
Mandala Posted September 23, 2010 Author Share Posted September 23, 2010 Thank you - this worked great. Link to comment Share on other sites More sharing options...
tomerg3 Posted September 23, 2010 Share Posted September 23, 2010 Great.Please add [solved] to the title of the first post. Link to comment Share on other sites More sharing options...
Mandala Posted September 24, 2010 Author Share Posted September 24, 2010 Actually, I spoke too soon.This has actually removed bank transfer as an option for UK customers as well... Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now