Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 25
  1. #11
    Join Date
    Sep 2007
    Location
    Far South Coast, NSW, Australia
    Posts
    436
    Plugin Contributions
    0

    Default Re: Bank Account Transfer payment option

    And another question: I changed the text on the page to make it list BSB first, and to delete the swift number. This worked on the page but not in the confirmation email sent to the customer. I assumed that both would be changed.
    This is interesting because I would like to have different text on the page and email anyway. So, how do you change the text in the confirmation email?

  2. #12
    Join Date
    Jul 2008
    Location
    Australia
    Posts
    28
    Plugin Contributions
    0

    Default Re: Bank Account Transfer payment option

    Quote Originally Posted by jenpen View Post
    And another question: I changed the text on the page to make it list BSB first, and to delete the swift number. This worked on the page but not in the confirmation email sent to the customer. I assumed that both would be changed.
    This is interesting because I would like to have different text on the page and email anyway. So, how do you change the text in the confirmation email?
    Try this, edit includes/modules/payment/dirbank.php
    Replace Lines 134 & 135 with this...

    function keys() {
    return array('MODULE_PAYMENT_DIRBANK_STATUS', 'MODULE_PAYMENT_DIRBANK_ZONE', 'MODULE_PAYMENT_DIRBANK_SORT_ORDER', 'MODULE_PAYMENT_DIRBANK_BSB', 'MODULE_PAYMENT_DIRBANK_ACCNUM', 'MODULE_PAYMENT_DIRBANK_ACCNAM', 'MODULE_PAYMENT_DIRBANK_SWIFT', 'MODULE_PAYMENT_DIRBANK_BANKNAM', 'MODULE_PAYMENT_DIRBANK_ORDER_STATUS_ID');

  3. #13
    Join Date
    Sep 2007
    Location
    Far South Coast, NSW, Australia
    Posts
    436
    Plugin Contributions
    0

    Default Re: Bank Account Transfer payment option

    directprint, I changed those lines as you suggested but nothing changed. I did a dummy order and the text on the webpage was ordered correctly, ie BSB then acct number, and no swift, but in the email to the customer it had acct number then BSB, and it still had the swift.
    It's not a biggie I guess but it would be nice to have it right.

  4. #14
    Join Date
    May 2008
    Posts
    402
    Plugin Contributions
    0

    Default Re: Bank Account Transfer payment option

    I am getting this error message... are there some files missing from this mod?

    Warning: main(/home/content/cs/html/te/includes/languages/english/modules/payment/dirbank.php): failed to open stream: No such file or directory in /home/content/cs/html/te/admin/modules.php on line 173

    Warning: main(/home/content/c/u/l/cs/html/te/includes/languages/english/modules/payment/dirbank.php): failed to open stream: No such file or directory in /home/content/cs/html/te/admin/modules.php on line 173

    Warning: main(): Failed opening '/home/content/c/u/l/cs/html/te/includes/languages/english/modules/payment/dirbank.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/content/cs/html/te/admin/modules.php on line 173

  5. #15
    Join Date
    May 2008
    Posts
    402
    Plugin Contributions
    0

    Default Re: Bank Account Transfer payment option

    Maybe something to do with using 1.3.8a?? and the modeule is for 1.3.0

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

  6. #16
    Join Date
    Nov 2007
    Posts
    22
    Plugin Contributions
    0

    Default Re: Bank Account Transfer payment option

    Did anyone answered Jenjen question? I did a test on my site with this mod installed, the font of my bank details is so small... anyway to enlarge the font?

  7. #17
    Join Date
    Sep 2007
    Location
    Far South Coast, NSW, Australia
    Posts
    436
    Plugin Contributions
    0

    Default Re: Bank Account Transfer payment option

    Eleona, I got the answer from somewhere but I can't remember where. I'll get back to you. Jenpen

  8. #18
    Join Date
    Sep 2007
    Location
    Far South Coast, NSW, Australia
    Posts
    436
    Plugin Contributions
    0

    Default Re: Bank Account Transfer payment option

    OK. I created a new class in the stylesheet:

    .direct {
    font-size: 1.4em;
    font-weight: normal;
    }

    and applied that class to that text on a page somewhere! But do you think I can find it now? Can someone else pinpoint the appropriate page? Jen

  9. #19
    Join Date
    Nov 2007
    Posts
    22
    Plugin Contributions
    0

    Default Re: Bank Account Transfer payment option

    on which file did you put this code?

    Quote Originally Posted by jenpen View Post
    OK. I created a new class in the stylesheet:

    .direct {
    font-size: 1.4em;
    font-weight: normal;
    }

    and applied that class to that text on a page somewhere! But do you think I can find it now? Can someone else pinpoint the appropriate page? Jen

  10. #20
    Join Date
    Sep 2007
    Location
    Far South Coast, NSW, Australia
    Posts
    436
    Plugin Contributions
    0

    Default Re: Bank Account Transfer payment option

    On the spreadsheet:
    "includes/templates/template_default/css/stylesheet.css" or substitute your template name for template_default.

    And, good news, I just had another look and found where you apply the class.
    "includes/languages/english/modules/payment/dirbank.php"

    Find these lines of code:
    <br><pre>' .
    "\nBSB Number: " . MODULE_PAYMENT_DIRBANK_BSB .
    "\nAccount No.: " . MODULE_PAYMENT_DIRBANK_ACCNUM .
    "\nAccount Name: " . MODULE_PAYMENT_DIRBANK_ACCNAM .
    "\nBank Name: " . MODULE_PAYMENT_DIRBANK_BANKNAM .
    '

    and place the div tag around them, ie

    <div class= "direct">
    <br><pre>' .
    "\nBSB Number: " . MODULE_PAYMENT_DIRBANK_BSB .
    "\nAccount No.: " . MODULE_PAYMENT_DIRBANK_ACCNUM .
    "\nAccount Name: " . MODULE_PAYMENT_DIRBANK_ACCNAM .
    "\nBank Name: " . MODULE_PAYMENT_DIRBANK_BANKNAM .
    '
    </div>

    Good luck with it!
    Jen

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Bank transfer payment option?
    By jas99villa in forum Addon Payment Modules
    Replies: 33
    Last Post: 8 Oct 2011, 04:16 AM
  2. 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
  3. Direct Credit to bank account payment option
    By caz in forum General Questions
    Replies: 2
    Last Post: 20 Dec 2007, 08:30 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