Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 34
  1. #11

    Default Re: Bank transfer payment option?

    Unfortunately there isn't a newer mod.

    I'm also having problems with the GV and dirbank module
    Anyone have a solution for this?
    http://www.customscripts.co.za - Custom development for open-source applications

    http://www.pcservice.co.za - Website Development, Domain Registration, Hosting

  2. #12
    Join Date
    Jan 2007
    Posts
    32
    Plugin Contributions
    0

    Default Re: Bank transfer payment option?

    Yes, I already found the solution.

    donwload this module:

    http://www.zen-cart.com/index.php?ma...roducts_id=209

    No problem with GV .

    Enjoy

  3. #13
    Join Date
    Jan 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: Bank transfer payment option?

    whats the different between these both module?

  4. #14
    Join Date
    Jan 2007
    Posts
    32
    Plugin Contributions
    0

    Default Re: Bank transfer payment option?

    dirbank doesn't work with gift certificates, also doesn't send the bank account info for email.

    eutransfer works fine with gift certificates and sends the bank account info for email with zencart 1.3.6, however with 1.3.7, the bank account info is not correspondent for email. This is my actual problem with this mod but works better that dirbank.

  5. #15
    Join Date
    Mar 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Bank transfer payment option?

    I am using Zen cart version 1.3.8a/v1.3.8 and I also installed the contribution "Direct bank deposit". It is fine in the admin area but it does not appear in payment methods when the client checks out.
    Do you know this problem? is it because of the compatibility or any other issue?

    I was recommended in a thread to use Eu direct bank transfer but my country is not in Europe.

    Thanks in advance for your kind advice.
    Albert

  6. #16
    Join Date
    Mar 2008
    Posts
    5
    Plugin Contributions
    0

    Default Re: Bank transfer payment option?

    On ZC 1.3.7 The euro transfer module don't show my bank information during checkout neither appends them into the e-mail. I am checking why, as a similar module Check/Money Order is working properly, having the same functionality, but can't find any answer. These modules are similar but one work, the other no.
    Last edited by luca_pl; 28 Mar 2008 at 08:08 PM.

  7. #17
    Join Date
    Feb 2008
    Posts
    28
    Plugin Contributions
    0

    Default Re: Bank transfer payment option?

    Hi wonder if anyone got this to work. For me it works but does not show up on one of my download products but does show up on all other products. Anyone have any ideas

  8. #18
    Join Date
    Jun 2007
    Posts
    93
    Plugin Contributions
    0

    Default Re: Bank transfer payment option?

    Hi, Just for anyone that is wondering, I tried the Bank deposit mod for AU as well and it was fine in Admin but wouldnt show up on the payment page. So I downloaded the one for Europe (see link above) I followed the upload instructions as normal and I made these changes to suit Australia.

    includes\languages\english\modules\payment\eustandardtransfer.php


    <?php
    /**
    * @package EU Standard Bank Transfer payment module
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version eustandardtransfer.php, ZC v1.3.8 2008-04-15 MENTAT
    */
    define('MODULE_PAYMENT_EUTRANSFER_TEXT_TITLE', 'Pay by Direct Bank Transfer into our account');
    define('MODULE_PAYMENT_EUTRANSFER_TEXT_DESCRIPTION',
    'Please use the following details to transfer your total order value:<br />' .
    '<br />Bank name: ' . nl2br(MODULE_PAYMENT_EUTRANSFER_BANKNAM) .
    '<br />Bank branch: ' . nl2br(MODULE_PAYMENT_EUTRANSFER_BRANCH) .
    '<br />Account Name: ' . nl2br(MODULE_PAYMENT_EUTRANSFER_ACCNAM) .
    '<br />Account no: ' . nl2br(MODULE_PAYMENT_EUTRANSFER_ACCNUM) .
    '<br />IBAN: ' . nl2br(MODULE_PAYMENT_EUTRANSFER_ACCIBAN) .
    '<br />BIC/SWIFT: ' . nl2br(MODULE_PAYMENT_EUTRANSFER_BANKBIC) );

    define('MODULE_PAYMENT_EUTRANSFER_TEXT_EMAIL_FOOTER',
    "Please use the following details to transfer your total order value:\n" .
    "\nBank name: " . MODULE_PAYMENT_EUTRANSFER_BANKNAM .
    "\nBank branch: " . MODULE_PAYMENT_EUTRANSFER_BRANCH .
    "\nAccount Name: " . MODULE_PAYMENT_EUTRANSFER_ACCNAM .
    "\nAccount no: " . MODULE_PAYMENT_EUTRANSFER_ACCNUM .
    "\nIBAN: " . MODULE_PAYMENT_EUTRANSFER_ACCIBAN .
    "\nBIC/SWIFT: " . MODULE_PAYMENT_EUTRANSFER_BANKBIC .
    "\n\nThanks for your order. You will be able to download immediately after we receive payment in the above account.\n\nYou will receive an email as soon as we received the payment.");
    ?>



    and I deleted a few bits of text that wasnt needed in Aussie bank details


    <?php
    /**
    * @package EU Standard Bank Transfer payment module
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version eustandardtransfer.php, ZC v1.3.8 2008-04-15 MENTAT
    */
    define('MODULE_PAYMENT_EUTRANSFER_TEXT_TITLE', 'Pay by Direct Bank Transfer into our account');
    define('MODULE_PAYMENT_EUTRANSFER_TEXT_DESCRIPTION',
    'Please use the following details to transfer your total order value:<br />' .
    '<br />Bank Name: ' . nl2br(MODULE_PAYMENT_EUTRANSFER_BANKNAM) .
    '' . nl2br(MODULE_PAYMENT_EUTRANSFER_BRANCH) .
    '<br />Account Name: ' . nl2br(MODULE_PAYMENT_EUTRANSFER_ACCNAM) .
    '<br />Account No: ' . nl2br(MODULE_PAYMENT_EUTRANSFER_ACCNUM) .
    '<br />BSB: ' . nl2br(MODULE_PAYMENT_EUTRANSFER_ACCIBAN) .
    '' . nl2br(MODULE_PAYMENT_EUTRANSFER_BANKBIC) );

    define('MODULE_PAYMENT_EUTRANSFER_TEXT_EMAIL_FOOTER',
    "Please use the following details to transfer your total order value:\n" .
    "\nBank Name: " . MODULE_PAYMENT_EUTRANSFER_BANKNAM .
    "\nBank Branch: " . MODULE_PAYMENT_EUTRANSFER_BRANCH .
    "\nAccount Name: " . MODULE_PAYMENT_EUTRANSFER_ACCNAM .
    "\nAccount No: " . MODULE_PAYMENT_EUTRANSFER_ACCNUM .
    "\nBSB: " . MODULE_PAYMENT_EUTRANSFER_ACCIBAN .
    "" . MODULE_PAYMENT_EUTRANSFER_BANKBIC .
    "\n\nThanks for your order. You will be able to download immediately after we receive payment in the above account.\n\nYou will receive an email as soon as we received the payment.");
    ?>



    The main changes were changing th IBAN title to BSB and removing the BIC/SWIFT:. Of course you can leave that if you want international deposits. I also removed the branch location as we really dont need that.

    Then in the admin I just filled in the appropriate details remembering I would put the BSB in the IBAN section and leave other fields blank. Of course you could go in and change the admin text file but I didnt bother.

    I hope this makes sense.

    Nat

  9. #19
    Join Date
    Aug 2007
    Posts
    43
    Plugin Contributions
    0

    Default Re: Bank transfer payment option?

    The default code for this option switches off the Direct Bank payment module for virtual products including gift vouchers and download products.

    To change this, open the files /includes/modules/payment/dirbank.php and remove the following lines (66-71)

    // disable the module if the order only contains virtual products
    if ($this->enabled == true) {
    if ($order->content_type == 'virtual') {
    $this->enabled = false;
    }
    }


    Be careful not to remove the last } as it goes with the section before (there are 3 in a row - only remove 2).

    Make sure that everything checks out to Status "Pending" with this option, that gift vouchers need to be released by you, and that downloads only activate on "Processing" else you will be giving away products for free!

  10. #20
    Join Date
    Oct 2007
    Posts
    63
    Plugin Contributions
    0

    Default Re: Bank transfer payment option?

    Does this direct deposit mod work if your bank is in the US. I keep seeing EU and AU. So i assume it is only for banks in the specific area?

 

 
Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Help with Direct Bank/Bank Wire Payment Option
    By mfreund in forum Addon Payment Modules
    Replies: 2
    Last Post: 6 Oct 2009, 06:00 PM
  2. Bank Account Transfer payment option
    By Anguz in forum Addon Payment Modules
    Replies: 24
    Last Post: 29 Mar 2009, 04:19 PM
  3. Payment by bank transfer - South Africa
    By windpower in forum Addon Payment Modules
    Replies: 0
    Last Post: 6 Apr 2008, 10:26 AM
  4. Person to Person Internet Bank Transfer Payment Option
    By velvita in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 17 Jun 2007, 11:52 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg