sonuyos Posted March 26, 2016 Share Posted March 26, 2016 So I want to Disable Automatic CC Processing by default, How can I do that? I did add a hook for it, but am not sure if it is working or not, How can i test it? /includes/hook/disablecc.php Got it from here - http://forum.whmcs.com/showthread.php?86486-Disable-Automatic-CC-Processing-by-default&p=385671#post385671 <?php function hook_disable_auto_cc($vars) { $command = "updateclient"; $adminuser = "admin"; $values["clientid"] = $vars['userid']; $values["disableautocc"] = true; $results = localAPI($command,$values,$adminuser); } add_hook("ClientAdd",1,"hook_disable_auto_cc"); ?> 0 Quote Link to comment Share on other sites More sharing options...
sonuyos Posted March 26, 2016 Author Share Posted March 26, 2016 Apparently, it works on new Accounts only, need to disable. 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Support Manager WHMCS John Posted March 28, 2016 WHMCS Support Manager Share Posted March 28, 2016 Hi, I would suggest going through each client and clicking toggling the "Auto CC Processing" option to "No" in the top-right corner of their Summary tab. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted March 28, 2016 Share Posted March 28, 2016 or running a sql update to the database if it would take to long to go through them all manually. 0 Quote Link to comment Share on other sites More sharing options...
interhost.il Posted August 13, 2016 Share Posted August 13, 2016 is it possible only store in tokenized gateway but not to process the credit card? We want to initiate billing only on the invoice due date wich is order date + 30. 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.