NicoKuroKusagi Posted May 6, 2017 Share Posted May 6, 2017 How to remove the Cancellation Option immediate? 0 Quote Link to comment Share on other sites More sharing options...
WHMCS ChrisD Posted May 6, 2017 Share Posted May 6, 2017 Hey NicoKuroKusagi, At this time, this isn't possible. Its important to note, even with immediate cancellation it still needs to be accepted by your team. 0 Quote Link to comment Share on other sites More sharing options...
NicoKuroKusagi Posted May 7, 2017 Author Share Posted May 7, 2017 Is there a link i can use to directly submit the cancellation? i want to implement it directly with a javascript popup and not an extra page but cant find the link or options to send the confirmation to example: https://hoster.tld/whmcs/cancel.php?id=348&cancel=true&reason=REASON_ENTERED or something 0 Quote Link to comment Share on other sites More sharing options...
WHMCS ChrisD Posted May 7, 2017 Share Posted May 7, 2017 That would require customisation of your theme, I'll move this thread to the Developers Corner where someone may be able to help you with this. 0 Quote Link to comment Share on other sites More sharing options...
NicoKuroKusagi Posted May 7, 2017 Author Share Posted May 7, 2017 i would customize the theme myself, i just want to know what link is called when i submit the cancellation or what exactly is done in the background 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted May 7, 2017 Share Posted May 7, 2017 How to remove the Cancellation Option immediate? At this time, this isn't possible. Really ?? surely they can just go into the clientareacancelrequest.tpl template and remove the Immediate option from the dropdown... <div class="form-group"> <div class="form-inline text-center"> <label class="control-label" for="type">{$LANG.clientareacancellationtype}</label> <select name="type" id="type" class="form-control"> <option value="Immediate">{$LANG.clientareacancellationimmediate}</option> <option value="End of Billing Period">{$LANG.clientareacancellationendofbillingperiod}</option> </select> </div> </div> Is there a link i can use to directly submit the cancellation?i want to implement it directly with a javascript popup and not an extra page but cant find the link or options to send the confirmation to I doubt, for security reasons, whether you could create a URL link like the one you specify... you might be able to use the API to do this - http://developers.whmcs.com/api-reference/addcancelrequest/ - but frankly, it would be easier to just modify the above template and use that. 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.