Search the Community
Showing results for tags 'bank transfer'.
-
EBANX Plus Module for PrestaShop EBANX is a comprehensive, cross-border payment solution that eliminates all barriers for international merchants to sell online in Latin America. Offering local payment methods with real-time processing. Benefits for Merchants More than 20 payment methods in the same module. Experience in local payment methods in Latin America. Complete administrative panel that concentrates the information of all international transactions in one place. Proven fraud protection that guarantees low fees for refunds. Provides the consumer with the security of cash payments. Multiple local payment options that increase consumer confidence. Accepts dollars (USD) and all local currencies of the participating countries. Possibility of creating specific rules to groups of customers or amount of carts, so that they are treated in a different way. Internal error log in a file. It does not require override files for it's correct functionality. Our Guarantees All our developments are validated by PrestaShop. We are PrestaShop Superhero Top Developer. Support warranty in the module's bugs. We can customize the module or make the necessary modifications. Contact us to request an estimate. Features EBANX currently accepts local payments from seven countries (Brazil, Mexico, Chile, Colombia, Peru, Argentina and Ecuador). Below are all the payment methods supported by country. Brazil Credit card Boleto bancário Bank transfer (TEF) Mexico Credit card OXXO Bank transfer (SPEI) Chile Servipag Sencillito Webpay Multicaja Colombia Credit card Baloto Bank transfer (PSE) Peru PagoEfectivo SafetyPay Argentina Credit card RapiPago PagoFacil Cupón de Pagos Ecuador SafetyPay GENERAL FEATURES Responsive payment gateway that provides the best user experience on any device. Transactions are confirmed in real time. Transactions are validated before being processed for a better user experience. Anti-fraud system that allows to detect fraudulent cards in real time. All transactions are stored and linked to the EBANX panel. Detailed error system, both in the module and the EBANX panel. Automatic update of payment status via webhook. Simple and separate configurator by country. Option to store Sandbox and Live credentials separately to allow rapid testing in both environments. It has two different styles of payment gateway (Standard and Lightbox). Possibility to specify in what type of currency the payment should be made. Option to enable a button for refunds in the order detail. Option to activate/deactivate the payment gateways separately for each of the countries. Option to activate/deactivate the payment gateway only to specific customer groups. Option to activate/deactivate the payment gateway for a minimum and/or maximum amount of the shopping cart. Option to enable only certain card types. Instalment payment option with credit cards. Option to enable only certain types of banks. Button to update banks (only for participating countries). Compatible with multi-currency. Compatible with multi-store. Complete and detailed documentation in english, portuguese and spanish. More info about the EBANX Plus Module for PrestaShop
-
- credit card
- pagofacil
- (and 12 more)
-
Hello, What is the easiest way to enable bank transfer as payment method? There is "Wire Payment v1.0.10 (by Prestashop)" installed, but it doesn't show up when ordering. All I need is an option for indicating that the selected payment method is bank transfer, no further administration, payment tracking, etc. is needed. Thanks.
- 1 reply
-
- transfer
- wire payment
-
(and 1 more)
Tagged with:
-
Dear all, Since I installed a Mister-Cash / Sofort module, customers paying by bank transfer dropped. How can incentivize people to pay by bank transfer? After all, it's really (meaning €25) cheaper per transaction for me. Can I have a price discount / reduction when people choose to pay by bank transfer? Michael
- 1 reply
-
- 1
-
-
- bank transfer
- bank
-
(and 1 more)
Tagged with:
-
Using Prestashop 1.6.0.8 I want to change 'Bank Wire' to 'Bank Transfer' so that everywhere, front end, back end, mails, etc Bank Wire gets replaced by Bank Transfer Read - http://www.prestashop.com/forums/topic/210479-solved-change-bank-wire-to-bank-transfer/ Tried chancing via translations but failed got this error. Warning! Your PHP configuration limits the maximum number of fields allowed in a form 1000 for max_input_vars. Please ask your hosting provider to increase this limit to 1820 at least, or you will have to edit the translation files. Tell me which files need to be changed Please list out the files which need to be modified.
-
Hello I use the OGONE plugin and I have in the admin a message "payment error" for bank transfers. The message should be "Pending Payment". For paypal and CB, no problem. Thank you for your lights. D
- 10 replies
-
- ogone
- error message
-
(and 1 more)
Tagged with:
-
After hit my head on the wall for hours, now I can reproduce and explain the problem... After a clean install of prestashop 1.5.4.0 (tested with 1.5.3.1 too) try to buy something selecting Bank transfer payment: WORKS The same install, If activate and configure multishop like attached screenshot (multishop.jph), when finish the order (selecting bank transfer) I got the attached error (error.jpg) If debug mode activated... [PrestaShopException] Can't load Order state status at line 145 in file classes/PaymentModule.php139. if (Configuration::get('PS_TAX_ADDRESS_TYPE') == 'id_address_delivery') 140. $context_country = $this->context->country; 141. 142. $order_status = new OrderState((int)$id_order_state, (int)$this->context->language->id); 143. if (!Validate::isLoadedObject($order_status)) 144. throw new PrestaShopException('Can\'t load Order state status'); 145. 146. if (!$this->active) 147. die(Tools::displayError()); 148. // Does order already exists ? 149. if (Validate::isLoadedObject($this->context->cart) && $this->context->cart->OrderExists() == false) PaymentModuleCore->validateOrder - [line 64 - modules/bankwire/controllers/front/validation.php] - [9 Arguments] 58. '{bankwire_owner}' => Configuration::get('BANK_WIRE_OWNER'), 59. '{bankwire_details}' => nl2br(Configuration::get('BANK_WIRE_DETAILS')), 60. '{bankwire_address}' => nl2br(Configuration::get('BANK_WIRE_ADDRESS')) 61. ); 62. 63. $this->module->validateOrder($cart->id, Configuration::get('PS_OS_BANKWIRE'), $total, $this->module->displayName, NULL, $mailVars, (int)$currency->id, false, $customer->secure_key); 64. Tools::redirect('index.php?controller=order-confirmation&id_cart='.$cart->id.'&id_module='.$this->module->id.'&id_order='.$this->module->currentOrder.'&key='.$customer->secure_key); 65. } 66. } BankwireValidationModuleFrontController->postProcess - [line 158 - classes/controller/Controller.php] - [0 Argument] 152. // setMedia MUST be called before postProcess 153. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) 154. $this->setMedia(); 155. 156. // postProcess handles ajaxProcess 157. $this->postProcess(); 158. 159. if (!empty($this->redirect_after)) 160. $this->redirect(); 161. 162. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) ControllerCore->run - [line 349 - classes/Dispatcher.php] - [0 Argument] 343. // Execute hook dispatcher 344. if (isset($params_hook_action_dispatcher)) 345. Hook::exec('actionDispatcher', $params_hook_action_dispatcher); 346. 347. // Running controller 348. $controller->run(); 349. } 350. catch (PrestaShopException $e) 351. { 352. $e->displayMessage(); 353. } DispatcherCore->dispatch - [line 28 - index.php] - [0 Argument] 22. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) 23. * International Registered Trademark & Property of PrestaShop SA 24. */ 25. 26. require(dirname(__FILE__).'/config/config.inc.php'); 27. Dispatcher::getInstance()->dispatch(); 28. The same case of this post... http://www.prestasho...payment-method/ until here... http://www.prestasho...ost__p__1149011 because I need multishop... any ideas? thank's!
- 2 replies
-
- error 500
- bank transfer
-
(and 2 more)
Tagged with:
-
We have an online store with prestashop selling in many different countries, mostly european countries. We would like to let customers pay with as many methods as possible but we don't like when payment gateways ask them to register with their systems (examples: paypal, moneybookers, skrill, etc...) Do you know any online companies which do not require customers to register? Any help will be appreciated. Thanks
- 1 reply
-
- payment
- credit card
-
(and 3 more)
Tagged with:
-
Hello, I'm having problems with the module MoneyBookers. It is on the version 1.5 by PrestaShop and is properly configured. The following is happening: When my customer pays using methods like bank transfer, Moneybookers whose verification takes longer, it does not perform automatic return, ie, the status of the payment remains Awaiting bank wire payment even if the payment has been received by MoneyBookers. It dosen't happened for payment by credit card, whose status is updated in time. What should I do? Thank you all!
- 1 reply
-
- moneybookers
- status
-
(and 2 more)
Tagged with: