denial Posted April 2, 2011 Share Posted April 2, 2011 i need to offer many banks options is there posible to duplicate the bank transfer module? 0 Quote Link to comment Share on other sites More sharing options...
denial Posted April 2, 2011 Author Share Posted April 2, 2011 i need to offer many banks options is there posible to duplicate the bank transfer module? at the end a friend of mine make a light module.... to get a second Bank Transfer Module :B create: banktransfer1.php and use this code: <?php function banktransfer1_config(){ $configarray = array( "FriendlyName" => array("Type" => "System", "Value"=>"Bank Transfer (1)"), "instructions" => array("FriendlyName" => "Bank Transfer Instructions", "Type" => "textarea", "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 banktransfer1_link($params) { return nl2br($params['instructions']); } ?> and to get a third Bank Transfer create: banktransfer2.php and use this code: <?php function banktransfer2_config(){ $configarray = array( "FriendlyName" => array("Type" => "System", "Value"=>"Bank Transfer (2)"), "instructions" => array("FriendlyName" => "Bank Transfer Instructions", "Type" => "textarea", "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 banktransfer2_link($params) { return nl2br($params['instructions']); } ?> etc.... (I hope this post is move to Tips, Tricks & Howto's bcus it really help me) 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Support Manager WHMCS John Posted April 4, 2011 WHMCS Support Manager Share Posted April 4, 2011 You can use the Mail in Payment gateway too, but for further duplicates please open a support ticket. 0 Quote Link to comment Share on other sites More sharing options...
denial Posted April 5, 2011 Author Share Posted April 5, 2011 But @John i really need several not just 2... srry for no open a tiket i just was on a hurry 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.