gboczar Posted November 12, 2015 Share Posted November 12, 2015 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 More sharing options...
Daresh Posted November 15, 2015 Share Posted November 15, 2015 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 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