wdele Posted October 5, 2014 Share Posted October 5, 2014 Hi, I charge monthly for all my services and as such I don't want clients to be able to do an immediate cancellation. I only want them to be able to choose 'at the end of the billing cycle'. Is this possible? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted October 5, 2014 Share Posted October 5, 2014 in clientareacancelrequest.tpl, you could modify the dropdown to remove the "Immediate" option... or possibly change it to a hidden field and have it set to use End of billing automatically. <select name="type" id="type"> <option value="Immediate">{$LANG.clientareacancellationimmediate}</option> <option value="End of Billing Period">{$LANG.clientareacancellationendofbillingperiod}</option> </select> 0 Quote Link to comment Share on other sites More sharing options...
adroitssd Posted October 5, 2014 Share Posted October 5, 2014 in clientareacancelrequest.tpl, you could modify the dropdown to remove the "Immediate" option... or possibly change it to a hidden field and have it set to use End of billing automatically. <select name="type" id="type"> <option value="Immediate">{$LANG.clientareacancellationimmediate}</option> <option value="End of Billing Period">{$LANG.clientareacancellationendofbillingperiod}</option> </select> Thanks a lot, It's work for our site. 0 Quote Link to comment Share on other sites More sharing options...
wdele Posted October 5, 2014 Author Share Posted October 5, 2014 in clientareacancelrequest.tpl, you could modify the dropdown to remove the "Immediate" option... or possibly change it to a hidden field and have it set to use End of billing automatically. <select name="type" id="type"> <option value="Immediate">{$LANG.clientareacancellationimmediate}</option> <option value="End of Billing Period">{$LANG.clientareacancellationendofbillingperiod}</option> </select> Of course! I didn't think of that. Thanks a ton, it works! 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.