Difference between revisions of "Bank Transfer"

From WHMCS Documentation

(Duplication)
Line 1: Line 1:
 +
== About this Module ==
 +
 
Using Bank Transfer as a gateway will give you a text area to enter payment details for the client that will be displayed on the Client Area invoice. This can be used to enter the bank routing code (sometimes called sortcode) and account numbers and any references required to allocate the payment correctly. As a result the 'forward user to payment gateway' order redirect option will redirect the client to the invoice.
 
Using Bank Transfer as a gateway will give you a text area to enter payment details for the client that will be displayed on the Client Area invoice. This can be used to enter the bank routing code (sometimes called sortcode) and account numbers and any references required to allocate the payment correctly. As a result the 'forward user to payment gateway' order redirect option will redirect the client to the invoice.
  
 
When you receive the payment, you would need to add the transaction manually into WHMCS by using the [[Transactions|Add Payment]] section of the invoice.  
 
When you receive the payment, you would need to add the transaction manually into WHMCS by using the [[Transactions|Add Payment]] section of the invoice.  
 +
<table class="table" style="text-align:center;margin:1em 1em 1em 0;background:#F9F9F9;border:1px #AAA solid;border-collapse:collapse;width:100%;">
 +
<tr>
 +
<th style="border:1px #AAA solid;padding:0.2em;background:#F2F2F2;text-align:center;">Type</th>
 +
<th style="border:1px #AAA solid;padding:0.2em;background:#F2F2F2;text-align:center;">One Time</th>
 +
<th style="border:1px #AAA solid;padding:0.2em;background:#F2F2F2;text-align:center;">Recurring</th>
 +
<th style="border:1px #AAA solid;padding:0.2em;background:#F2F2F2;text-align:center;">Refunds</th>
 +
<th style="border:1px #AAA solid;padding:0.2em;background:#F2F2F2;text-align:center;">3D Secure</th>
 +
</tr>
 +
<tr>
 +
<td style="border:1px #AAA solid;padding:0.2em;" colspan="5">N/A</td>
 +
</tr>
 +
</table>
 +
 +
== Adding the Bank Transfer Payment Gateway ==
 +
 +
To set up the payment gateway in WHMCS:
 +
 +
# Go to '''Configuration (<i class="fa fa-wrench" aria-hidden="true"></i>) > System Settings > [[Payment Gateways]]''' or, prior to WHMCS 8.0, '''Setup > Products/Services > Payment Gateways'''.
 +
# Choose the '''All Payment Gateways''' tab.
 +
# Click '''Bank Transfer'''.
 +
# Check '''Show on Order Form''' to display this payment method in the Client Area during checkout.
 +
# Configure a display name and the bank transfer instructions.
 +
# Click '''Save Changes'''.
 +
 +
=== Test Mode === 
 +
 +
This payment gateway module does not include test mode.
 +
 +
== Module Duplication ==
  
==Duplication==
+
This module and the [[Mail In Payment]] module, are open-source meaning it can be easily duplicated if you wish to offer multiple options.  
This module and the Mail in Payment module, are open-source meaning it can be easily duplicated if you wish to offer multiple options. Duplicating these modules is a simple process:
 
  
* Create a copy of /modules/gateways/banktransfer.php. The new filename must be all lowercase, alphanumeric characters only and contain no spaces.
+
To duplicate a module:
* Open the new file in a text editor such as Notepad and change the following three lines to the name of your new module;
 
function banktransfer_config() {<br />
 
"Value" => "Bank Transfer"<br />
 
function banktransfer_link($params) {
 
  
For example:
+
# Create a copy of /modules/gateways/banktransfer.php. The new filename must be all lowercase, alphanumeric characters only and contain no spaces.
<source lang="php"><?php
+
# Open the new file in a text editor such as Notepad and change the following three lines to the name of your new module:<source lang="php"> function banktransfer_config() {
 +
"Value" => "Bank Transfer"
 +
function banktransfer_link($params) {</source>For example:<source lang="php"><?php
  
 
# Bank Transfer Payment Gateway Module
 
# Bank Transfer Payment Gateway Module
Line 47: Line 75:
  
 
?></source>
 
?></source>
* The above code would create a new payment gateway module called Bank Transfer Copy.
+
# The above code would create a new payment gateway module called Bank Transfer Copy.
* Finally save the file as banktrasnfercopy.php (the file name must match the function name ie. banktransfercopy) and upload to your /modules/gateways/ directory.
+
# Save the file as banktrasnfercopy.php (the file name must match the function name ie. banktransfercopy).
 +
# Upload the file to your /modules/gateways/ directory.
 +
 
 +
The new module will be available for activation under  '''Configuration (<i class="fa fa-wrench" aria-hidden="true"></i>) > System Settings > Payment Gateways''' or, prior to WHMCS 8.0, '''Setup > Payments > Payment Gateways'''.
 +
 
 +
== Troubleshooting ==
  
That's all there is to it, your new module will be available for activation under  '''Configuration (<i class="fa fa-wrench" aria-hidden="true"></i>) > System Settings > Payment Gateways''' or, prior to WHMCS 8.0, '''Setup > Payments > Payment Gateways'''.
+
''N/A''
  
 
{{modules}}
 
{{modules}}

Revision as of 21:03, 21 March 2022

About this Module

Using Bank Transfer as a gateway will give you a text area to enter payment details for the client that will be displayed on the Client Area invoice. This can be used to enter the bank routing code (sometimes called sortcode) and account numbers and any references required to allocate the payment correctly. As a result the 'forward user to payment gateway' order redirect option will redirect the client to the invoice.

When you receive the payment, you would need to add the transaction manually into WHMCS by using the Add Payment section of the invoice.

Type One Time Recurring Refunds 3D Secure
N/A

Adding the Bank Transfer Payment Gateway

To set up the payment gateway in WHMCS:

  1. Go to Configuration () > System Settings > Payment Gateways or, prior to WHMCS 8.0, Setup > Products/Services > Payment Gateways.
  2. Choose the All Payment Gateways tab.
  3. Click Bank Transfer.
  4. Check Show on Order Form to display this payment method in the Client Area during checkout.
  5. Configure a display name and the bank transfer instructions.
  6. Click Save Changes.

Test Mode

This payment gateway module does not include test mode.

Module Duplication

This module and the Mail In Payment module, are open-source meaning it can be easily duplicated if you wish to offer multiple options.

To duplicate a module:

  1. Create a copy of /modules/gateways/banktransfer.php. The new filename must be all lowercase, alphanumeric characters only and contain no spaces.
  2. Open the new file in a text editor such as Notepad and change the following three lines to the name of your new module:
     function banktransfer_config() {
     "Value" => "Bank Transfer"
     function banktransfer_link($params) {
    For example:
    <?php
    
    # Bank Transfer Payment Gateway Module
    
    function banktransfercopy_config() {
    
        $configarray = array(
         "FriendlyName" => array(
            "Type" => "System",
            "Value" => "Bank Transfer Copy"
            ),
         "instructions" => array(
            "FriendlyName" => "Bank Transfer Instructions",
            "Type" => "textarea",
            "Rows" => "5",
            "Value" => "Bank Name:\nPayee Name:\nSort Code:\nAccount Number:",
            "Description" => "The instructions you want displaying to customers who choose this payment method - the invoice number will be shown underneath the text entered above",
            ),
        );
    
    	return $configarray;
    
    }
    
    function banktransfercopy_link($params) {
        global $_LANG;
    
        $code = '<p>'.nl2br($params['instructions']).'<br />'.$_LANG['invoicerefnum'].': '.$params['invoiceid'].'</p>';
    
        return $code;
    
    }
    
    ?>
  3. The above code would create a new payment gateway module called Bank Transfer Copy.
  4. Save the file as banktrasnfercopy.php (the file name must match the function name ie. banktransfercopy).
  5. Upload the file to your /modules/gateways/ directory.

The new module will be available for activation under Configuration () > System Settings > Payment Gateways or, prior to WHMCS 8.0, Setup > Payments > Payment Gateways.

Troubleshooting

N/A

Server Modules
cPanel/WHM - DirectAdmin - Plesk - Helm 3 - Helm 4 - Ensim - InterWorx - WebsitePanel - Cloudmin
Lxadmin - Virtualmin Pro - XPanel - HyperVM - SolusVM - Cloudmin - WHMSonic - VPS.Net
CentovaCast - SCPanel - MediaCP - GameCP - TCAdmin - Reseller Central - Auto Release - Heart Internet

Registrar Modules
Enom - ResellerClub - Nominet - OpenSRS - ResellOne - OnlineNIC - PlanetDomain - Affordable Domains
TPP Wholesale - TPPInternet - Stargate - Namecheap - NetEarthOne - Bizcn - InternetBS - GMO Internet
12Register - Registercom - DotDNS - WebNIC - Dot.TK - HexoNet - Realtime Register - Registereu
RRPProxy - ResellerCamp - TransIP - Heart Internet - IPMirror - NetRegistry - OVH - VentraIP Wholesale
Email - 101Domain

Fraud Modules
MaxMind - VariLogiX FraudCall - Telesign

Gateway Modules
2CheckOut - AsiaPay - Auth.net Echeck - Authorize.net - Authorize.net CIM - Bank Transfer - BidPay
BluePay - BluePay Echeck - BluePay Remote - Boleto - CashU - CC Avenue - ChronoPay - Direct Debit
EMatters - E-Path - eProcessingNetwork - eWAY Tokens - F2B - Finansbank - GarantiBank - Gate2Shop
Inpay - InternetSecure - IP.Pay - Kuveytturk - Modulo Moip - Mail In Payment - Merchant Partners
Merchant Warrior - IDEALMollie - Moneris - Moneris Vault - Skrill 1-Tap - NaviGate - NETbilling
Netregistry Pay - NoChex - Offline Credit Card - Optimal Payments - PagSeguro - Payflow Pro - Pay Junction
Paymate AU and NZ - Payment Express - PayPal - PayPal Card Payments - PayPal Express Checkout
PayPal Payments - PayPal Payments Pro - PayPoint.net (SecPay) - Payson - Planet Authorize - ProtX VSP Form
PSIGate - Quantum Gateway - Quantum Vault - SagePay - SagePay Tokens v2 - SecurePay
SecurePay AU - Secure Trading - TrustCommerce - USA ePay - WorldPay - WorldPay Invisible