Search the Community
Showing results for tags 'bank wire'.
-
Buongiorno a tutti, ho installato la versione 1.7.2.5 e non riesco a far funzionare il modulo del bonifico bancario. Una volta configurato, quando il cliente lo sceglie come opzione, invece di comunicare i dati Iban, va in errore. Tuttavia l'ordine viene registrato, ma il cliente non ha l'iban e neanche la percezione che tutto sia andato a buon fine Qualcuno ha un consiglio? Grazie
-
Hi! I've encountered a strange problem with payment by bank wire and European VAT. When a customer enters the vat number the tax get deducted. It works fine with other payment options like PayPal. But when choosing pay by bank wire the vat is still there on the invoice, pay total is including vat. Does anyone have a solution for this or know why? Prestashop version 1.7.4.4 Thanks in advance! Daniel
-
Hello, I would like to change the description of the bank wire description from: Pay by bank wire (order process will be longer) Where do I find this text in Prestashop so that I am able to change this. (In Australia we tend not to use the term "bank wire", but rather direct bank deposit or bank transfer) Thanks for any assistance.
- 18 replies
-
Server information Linux #1 SMP Wed May 2 07:43:19 EDT 2018 x86_64 Server software version: Apache PHP version: 5.6.36 Memory limit: 512M Max execution time: 120 Upload Max File size: 64M Bank wire module stopped working and below screenshot of the case. Can anybody help me to fix this step by step?
-
Hi, On guest checkout the bank wire and cheque payments only show up, can anyone tell me how I can get paypal and credits card payments to show as well. This is happening on different prestashops Thankyou in advance.
-
- guest checkout
- cheque
-
(and 1 more)
Tagged with:
-
I have installed the following 1.Payment by cheque 2.Bankwire 3.Cash on delivery I have given all permissions of countries , Users , products to all the above. However none of the payment options are visible when I try to purchase a product. The payment gateway 5 page method works fine with all pages loading and the final page shows the total amount with the taxes but no payment option visible as it used to before. I have the following enabled public $display_column_left = true; in all my payment plugins and also they are hooked to the following 1. displayPayment 2. displayPaymentEU 3. displayPaymentReturn I think there is no left and right column enabled on my payment page. there seems to be just the center column. Also i tried to open the global.css to change the width of the column to see if that helped . However it was such a lengthy code that i didnt know where to add the following body#order #center_column {width:500px;} body#order #right_column {width:500px;} body#order #left_column {display:none;} What changes should i make and how should I make . Please explain in detail . Many users seem to have this issue. View the attachments I dont mind a session on team viewer to make things simpler.
-
I'm stuck on changing this, so my last option is to ask for help. The texts of my payment methods are completely set in capital letters, and i can't find any way to change it. PAY BY BANK WIRE (ORDER PROCESSING WILL TAKE MORE TIME) it should just be Pay by bank wire (order processing will take more time) If i look at the translations, its just normal like it should be. Even if i copy the text somewhere else it is like it should be. But on the website both payment methods show in capital letters. Can anyone help me plz?
-
Hi! Please find here my last work Prestashop 1.5.0.17, but it should work an all 1.5 The module of payment by bank wire in prestashop is totally wrong, in my opinion. The bank wire is very useful and cheap, not fast, but often convenient. The problem that comes from the module of PS is that the bank wire is proposed only if the customer selects in the front office the currency we have agreed to receive. So, if we only accept Euros (my case) and we emit invoices in Euros only, and the customer displays the shop in dollars, the payment with the bank wire will not even proposed! For me it works in a quite crazy way... Let me explain why: - as customer, i can visit the whole shop in dollars, currency more familiar to me, but then I can easily send a bank wire in Euros (exactly as it happens automatically with PayPal) - as seller, I decided to only accept Euros and make invoices in Euros only, but an Euros bank wire can be received from anywhere, even from countries with different currency So, with great effort (I'm not a developer!) I modified the .tpl of the bankwire module, slightly modifying the operation and the contents. To install it, first create a bakup copy of the file: /modules/bankwire/views/templates/front/payment_execution.tpl Then open the file payment_execution.tpl and replace the code inside it with this: {* * 2007-2012 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2012 PrestaShop SA * @version Release: $Revision: 7465 $ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {capture name=path}{l s='Bank wire payment' mod='bankwire'}{/capture} {include file="$tpl_dir./breadcrumb.tpl"} <h2>{l s='Order summary' mod='bankwire'}</h2> {assign var='current_step' value='payment'} {include file="$tpl_dir./order-steps.tpl"} {if $nbProducts <= 0} <p class="warning">{l s='Your shopping cart is empty.' mod='bankwire'}</p> {else} <h3>{l s='Bank wire payment' mod='bankwire'}</h3> <form action="{$link->getModuleLink('bankwire', 'validation')}" method="post"> <p> <img src="{$this_path}bankwire.jpg" alt="{l s='bank wire' mod='bankwire'}" width="86" height="49" style="float:left; margin: 0px 10px 5px 0px;" /> <br/> {l s='You have chosen to pay by bank wire.' mod='bankwire'} <br/><br /> </p> <p> <!-- if customer currency is that one I want --> {if ($cart->id_currency) == 1} {l s='The total amount of your order is' mod='bankwire'} <span id="amount" class="price" style="font-weight: bold">{displayPrice price=$total}</span>{if $use_taxes == 1} {l s='(tax incl.)' mod='bankwire'} {/if} </p> <p> {l s='Bank wire account information will be displayed on the next page.' mod='bankwire'} </p> <p> <b>{l s='Please confirm your order by clicking \'I confirm my order\'' mod='bankwire'}.</b> </p> <p class="cart_navigation"> <input type="submit" name="submit" value="{l s='I confirm my order' mod='bankwire'}" class="exclusive_large" /> <a href="{$link->getPageLink('order', true, NULL, "step=3")}" class="button_large">{l s='Other payment methods' mod='bankwire'}</a> </p> </form> <!-- if customer currency is different from what I want --> {else} {l s='We only accept payments in' mod='bankwire'} <b>{l s='Euros' mod='bankwire'}</b>. {l s='Your current currency is' mod='bankwire'} <b>{if ($cart->id_currency) == 2}{l s='Dollar' mod='bankwire'}{/if}</b><b>{if ($cart->id_currency) == 3}{l s='Pound' mod='bankwire'}{/if}</b>.<br /><br /> {l s='The total amount of your order is' mod='bankwire'} <span id="amount" class="price"><b>{displayPrice price=$total}</b></span>{if $use_taxes == 1} {l s='(tax incl.)' mod='bankwire'} {/if}<br /><br /> <b>{l s='Please note' mod='bankwire'}</b>:<br /> {l s='The reference prices of entire shop are in' mod='bankwire'} {l s='Euros' mod='bankwire'}. {l s='The conversion in' mod='bankwire'} {if ($cart->id_currency) == 2}{l s='Dollar' mod='bankwire'}{/if}{if ($cart->id_currency) == 3}{l s='Pound' mod='bankwire'}{/if} {l s='is automatically made using daily updated exchange rates, but keep in mind that exchange rates of your bank may be slightly different' mod='bankwire'}.<br /><br /> {l s='By clicking' mod='bankwire'} <b>OK</b> {l s='your order will be converted in' mod='bankwire'} {l s='Euros' mod='bankwire'} {l s='and you will be able to conclude the check out paying with bank wire' mod='bankwire'}.<br /><br /> {l s='Otherwise click' mod='bankwire'} <b>{l s='Other payment methods' mod='bankwire'}</b> {l s='and choose another kind of payment' mod='bankwire'}. </p> <p class="cart_navigation"> <input type="button" id="currency_payement" name="currency_payement" value="OK" onclick="setCurrency(1);" class="exclusive_large" /> <a href="{$link->getPageLink('order', true, NULL, "step=3")}" class="button_large">{l s='Other payment methods' mod='bankwire'}</a> </p> {/if} {/if} Now the module works in this way: - from BO the bank wire is activated for all currencies enabled (modules ==> Payments ==> Payment module restrictions) - to the customer, independently from the currency that he has set in the front office, is now given the option to pay with bank transfer - the module then checks the currency chosen by the customer: - if it is the default one it goes on - if it is different, the module gives an extra partial step in which it explains that the shop only accept payments in Euros (or currency selected by the seller), that the order will be converted into the currency selected by the seller and it will be shown again before being sent by the customer. The setting of the various currencies is manual and directly on the template code. It use the ID of the currencies that can be easily identified in the BO "Localization ==> Currencies". The currency that we want as default is on line 49 (here represented by the number 1 - Euros): {if ($cart->id_currency) == 1} We must also enter at lines 67 and 72 the IDs of the other currencies activated in shop with their names in English (here 2 is Dollar and 3 is Pound): {if ($cart->id_currency) == 2}{l s='Dollar' mod='bankwire'}{/if}</b><b>{if ($cart->id_currency) == 3}{l s='Pound' mod='bankwire'}{/if} Still on lines 67, 72 and 73 declare in what currency you want to be paid (here just "Euros"): {l s='Euros' mod='bankwire'} The last parameter on line 77 where we write again the ID of the default currency (here 1 to represent the Euros): onclick="setCurrency(1);" Obviously there are new parts to be translated in BO: good job! I've tested it and I use it in my shop, it works great. I think it would be nice that some developer who is part of the development of PS propose to use this modification in an official way, developing it with an easier setup directly from BO instead of this one directly in the code. Otherwise the bank wire is very little usable! But you will see this, at the moment it works like a charme for me! Let me know if you like it and if anyone finds any problem! (and I hope my English is good enough...) Bye!
-
I have installed and enabled only "Bank Wire" module for payments i have configured this module with accurate information but when i tried to test it, i am getting an ERROR: No payment modules have been installed. Any help will be appriciated..............
-
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.
-
When customers choose to pay by bank wire at checkout, they get the following error. What do I need to fix? [PrestaShopDatabaseException]MySQL server has gone away SELECT * FROM `ps_orders` a WHERE (a.id_order = 181) LIMIT 1 at line 635 in file classes/db/Db.php 629. WebserviceRequest::getInstance()->setError(500, ' '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97); 630. } 631. else if (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) 632. { 633. if ($sql) 634. throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>'); 635. throw new PrestaShopDatabaseException($this->getMsgError()); 636. } 637. } 638. 639. /** DbCore->displayError - [line 325 - classes/db/Db.php] - [1 Arguments] DbCore->query - [line 547 - classes/db/Db.php] - [1 Arguments] DbCore->getRow - [line 212 - classes/ObjectModel.php] - [1 Arguments] ObjectModelCore->__construct - [line 259 - classes/order/Order.php] - [2 Arguments] OrderCore->__construct - [line 370 - classes/order/OrderHistory.php] - [1 Arguments] OrderHistoryCore->addWithemail - [line 703 - classes/PaymentModule.php] - [2 Arguments] PaymentModuleCore->validateOrder - [line 64 - modules/bankwire/controllers/front/validation.php] - [9 Arguments] BankwireValidationModuleFrontController->postProcess - [line 171 - classes/controller/Controller.php] ControllerCore->run - [line 373 - classes/Dispatcher.php] DispatcherCore->dispatch - [line 28 - index.php] My site is cactus-shop.co.uk Can anyone help? Thanks, Ralph
-
If a customer looks at his order history in the Danish translation and there are orders pending a bank wire payment. Under the "Status" column the text "Awaiting bank wire payment" is not translated. Anyone (Milos for instance) who knows where to find this text in order for us to translate it into Danish? Kind regards BeMike
-
Hi, I am a recent member of the community and I am having trouble configuring my store: http://www.docesregionais.com/loja I'm using version 1.5.6.2 Prestashop and I can not get the shopping cart visible at the store. I set up the "Rules of the basket", but NEVER appear cart! Another problem stressing me is setting up payments. I only intend to provide Paypal and bank wire as forms of payment, but none of them work! The bank transfer option does not even appear in the product page and Paypal always gives an error - the message is always the same Error occurred: I plan to use this store for exclusive sale of ebooks. Please can someone help me? Thank you!
-
Hallo zusammen, ich nutze PrestaShop1.5.3.1. Ich würde gerne die Übersetzungen von Bank Wire anpassen. Hierzu klicke ich im Bank Wire Modul auf "Übersetzungen verwalten" und kann dort dann die entsprechenden Änderungen vornehmen. Beim Speichern erhalte ich allerdings die Fehlermeldung: "Sprachdatei des Themes kann nicht gespeichert werden. Bitte Berechtigungen prüfen." Ist schon klar, ich muss irgendwelche CHMODS ändern...nur wo genau finde ich die? Folgende Ordner habe ich bereits inklusive Unterordner auf 777 gesetzt: /modules/bankwire/ /translations/ /themes/default/lang/ /themes/PRS030070/lang/ /themes/PRS030070-default/lang/ Funktioniert aber leider noch immer nicht. Wo finde ich die Datei, die mit den entsprechenden Rechten ausgestattet werden muss? Danke und Grüße, Jan
- 4 replies
-
- Bank wire
- berechtigung
-
(and 1 more)
Tagged with:
-
Hi, I am new in using prestashop and webdevelopment. I have installed new prestashop 1.5.6. I am facing a problem with "placing order". When I click "Place Order" it takes me to a blank page and the URL I get is [http://etasheta.com/module/cashondelivery/validation] but in my local host it is ok. Another thing is that I am not getting the bank wire and check payment option in payment option's area. Though I have installed and enabled those. Thanks in advance
- 17 replies
-
- place order
- payment
-
(and 3 more)
Tagged with:
-
hi every one here, please need help concerning this issue. i uses bank wire payment method, after upgrading to 1.5.3.1, i discovered that after a customer has login and is ready to make payment,that is obtain my payment particulars to enable him make paymet through his bank. The payment tab would read information like this below: "Bank wire account information will be displayed on the next page". "Please confirm your order by clicking 'I confirm my order". Imediately you click on it, it will show a blank page on the browser, if you refresh it again it will come with information like this: "cart cannot be loaded or an order has already been placed using this cart" i have disabled the cart rule and reconfigured my bank wire thinking that the fault is from their but it did not work. Please help if there is any one with solution to this problem, am relatively new to prestashop.
-
Hi, I have Prestashop 1.5.5.0 on this website www.fanelectro.ro and after a client confirm his order appear a page with Error Server 500. The order appear in my admin area. The modules folder permisson is set to 755. You have any hints? Thank you!
- 3 replies
-
- modul cash on delivery
- bank wire
-
(and 1 more)
Tagged with:
-
Hi Guys, I was able to change the Bankwire to "Bank transfer" by going to the "Bank Wire" module and click the little flag and then change all the "bank wire" to "bank transfer" in the old version -- 1.5.3.1 However, after upgrading to the latest version which is 1.5.4.0, I could not do the same translation as I did before. I was looking around the "Translations", but no luck. Can anyone help me with this issue? Thanks in advance
-
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:
-
Hi, Does anyone know how to modify module bank wire so you can offer discount to customers who pay by bank wire. What I want to achieve is to give 1 € discount to anyone who uses and pay by bank wire. Maybe there is already module to do this. Anyone? Kind regards, Tinechem
- 4 replies
-
- bankwire discount
- bank wire
-
(and 1 more)
Tagged with:
-
Hello, I am having problems with the bank wire module (prestashop v1.4) Everything goes well till the customer clicks the confirm order button. The next page is stating " We're sorry, but the Web address you entered is no longer available". The address is stating "...order-confirmation.php....". So somithing is going wrong here. Despite this, the order is registered. The customer receives the 2 mails (one with the order and 1 with the bankdetails). The order status is "awaiting payment". This is all fine... How can I resolve the error notice and replace it by the normal "order succeeded"? It is very confusing for the customer. Is this a bug??? Thanks for you help. Rudy
-
Hi, I am developing a store for my client in prestashop, so far it went good but I am having trouble in setting up the payment module. They are configured properly according to their requirements but when a user clicks on the payment module to pay the amount (on whatever payment option) an internal server error comes in. Why is that? Any help?? Below is the error which comes in: The server encountered an internal error or misconfiguration and was unable to complete your request.
- 5 replies
-
- western union
- money gram
-
(and 2 more)
Tagged with:
-
maaf saya masih pemula mohon bantuan master disini, masalah bank wire...udah di utak atik permision nya tapi tetep aja ga bisa chekout Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. mohon bantuannya para master untuk sudi kiranya meluangkan waktu...terimakasih sebelumnya