Jump to content

Problem z płatnością BANKWIRE - Przelew Bankowy.


gboczar

Recommended Posts

Witajcie,

mam problem z płatnością BANKWIRE - Przelew Bankowy versja. 0,5 oraz 1.1 to samo.

Przechodzę przez cały proces zamówienia, wybieram "Przelew Bankowy" następnie klikam - ZAMAWIAM i PŁACĘ i wyskakuje mi biała strona na górze po lewej z napisem: "Ta metoda płatności nie jest dostępna." link w pasku to: http://mpelczar.pl/pl/module/bankwire/validation

 

nie ogarniam o co chodzi. Pozostałe metody działają poprawnie. Proszę o pomoc. Prestashop 1.5

Link to comment
Share on other sites

Miałem tak kiedyś, ale to się działo na kopii modułu bankwire, która miała zmienioną nazwę na bankwire2. Tutaj chyba nie zachodzi taka sytuacja?

 

Poniższy kod odpowiada za to sprawdzanie:

// Check that this payment option is still available in case the customer changed his address just before the end of the checkout process
$authorized = false;
foreach (Module::getPaymentModules() as $module)
	if ($module['name'] == 'bankwire')
	{
		$authorized = true;
		break;
	}
if (!$authorized)
	die($bankwire->l('This payment method is not available.', 'validation'));
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...