
Originally Posted by
mach9
Can you tell me what changes you made to add the branch name?
I also want the text to display properly as it does in the "payment modules" section.
See Image.
Thanks for any help.
Hi
Inincludes\modules\payment\onlinebank.php
look for this line
PHP Code:
$db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Branch Code', 'MODULE_PAYMENT_ONLINEBANK_SRTCOD', '25-03-55', 'Branch Code in the format 00-00-00', '6', '1', now());");
THEN ADD
PHP Code:
$db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Branch Name', 'MODULE_PAYMENT_ONLINEBANK_BRCNAME', 'Rivonia', 'Branch Name', '6', '1', now());");
Step 2:
Go to includes\languages\english\modules\payment\onlinebank.php
FIND
PHP Code:
"\nBranch Code: " . MODULE_PAYMENT_ONLINEBANK_SRTCOD .
There should be two places and add
PHP Code:
"\nBranch Name: " . MODULE_PAYMENT_ONLINEBANK_BRCNAME .
under each one.
I hope this helps.