Many customers in Canada prefer to pay for the merchandise they buy, by e-Transfer (formerly Email Money Transfer).
Many customers in Canada prefer to pay for the merchandise they buy, by e-Transfer (formerly Email Money Transfer).
If customers choose the secret question and answer by themselves, they have to call to inform you what the Q&A are. Or they have the option to send them by Email. The other option is you give everybody a static question and answer.
In both cases, if a third party, or a hacker, gain access to the username & password of your Email, he/she can deposit the funds to any account he wants, and there is no way to cancel the transaction.
So, this plugin creates a random word which can be used as an answer to the quetion. In this case, whoever has the access to your Email box, is not going to figure out what the answer to the question is. Unless he/she hacks the backend of the website as well as your Email box.
In the ‘Email Transfer payment gateway’ in the WooCommerce Settings, there is a field named ‘Instructions’. Whatever you enter in that field will be shown to the user in the ‘Thank You’ page after placing an order, and also in the Email.
You must provide an Email for customers, so you can receive the instructions to retrieve the funds they send.
Also you should keep two placeholders which are {1} and {2}.
{1} will be replaced by Order Number. Customers should be encouraged to mention their order number in the secret question they send
{2} will be replaced by a randomly generated 6-character long word. Customers are encouraged to use that word as the answer to the secret question.
An ‘Order note’ will be added to the order, containing this randow word, so upon retrieving the funds, you will know what the answer to the secret question of each order is.
An Instruction can be something like this:
After placing your order, please send an Email money transfer to the following:
Email: [email protected]
Secret Question: Your Order Number {1}
Secret Answer: {2} (MAKE SURE YOU DO NOT REMOVE THESE TWO {1} and {2})
Thanks for choosing us! We appreciate your business.
Translators who did a great job converting the text of the plugin to their native language. Thank you!
An e-Transfer resembles an e-check in many respects. The money is not actually transferred by e-mail. Only the instructions to retrieve the funds are.
The sender opens an online banking session and chooses the recipient, the amount to send, as well as a security question and answer. The funds are debited instantly, usually for a surcharge.
An e-mail or text message is then sent to the recipient, with instructions on how to retrieve the funds and answer the question, via a secure website.
The recipient must answer the security question correctly. (If the recipient fails to answer the question correctly after three tries, then the funds will automatically be returned to sender.
If the recipient is subscribed to online banking at one of the participating institutions, the funds are deposited instantly at no extra charge.
You can modify the instructions shown to the buyer the way you would like. But make sure you leave two placeholders of {1} and {2}, so the plugin can replace them later with order number and the randomly generated answer.
If the buyer mentions the order number in the question, you would know who is sending the fund. The answer sent to the buyer can be found in the order page, as the first order note.
Changed class name/function names, to make it unique
Added BLAZING to the plugin’s name
Removed money from the plugin’s name
Removed Inerac name from the plugin
Sanitized inputs & escaped outputs, and followed WordPress Coding Standards
Remove the use of any of WooCommerce trademarks from the beginning of the plugin’s display name
replaced $order->user_id with $order->get_user_id().
Fixed the Secret Answer sent by Email, to the right one for the ordering user.
replaced $order->reduce_order_stock() with wc_reduce_stock_levels( $order_id );
Updated according to some changes in Woocommerce api; also added an option in settings (Woocoomerce settngs -> Payments-> Email Transfer) to select the status of the order, upon using this gateway.
Added translation files for French
Fiexed the “Enable for Shipping Method” select box which was showing an empty dropdown
Mistakenly Email instructions was sent for every status before this release. Now it is limited to Pending, Processing, and On-hold status.
Fixed a bug in showing user profile page
Before this release whenever a customer places an order, a new answer to the secret question was given. In this release, if a customer creates a user account, the secret answer is saved in his profile, and for all the future orders that answer is shown.
The answer to the secret question can be modified in the user profile page.
Also the priority of payment instructions is changed, so it is shown before order details.
Changed the status of the order to “On Hold”
Changed the status of the order from “Processing” to “Pending Payment”, so the order is not included in Woocommerce report for sales, before payment.
Fixed the thankyou_page code to show instructions only if this payment method is selected.
Fixed a bug. Apparently, in presence of other plugins, this plugin was called before woocommerce was instantiated. So I just added a few lines to check if WC()->session exists.