How to change the default Billing Option for Users created in the Nerve Center.
- 03 Apr 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
How to change the default Billing Option for Users created in the Nerve Center.
- Updated on 03 Apr 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
How to change the default Billing Option for Users created in the Nerve Center.
Locate the modifypatron.asp file, which should be located under Inetpub\wwwroot\SignUp. This can be edited with any text editor, such as Notepad.
In modifypatron.asp search for the text:
if (IsNewId)
{
ModifyUser();
Replace it with:
if (IsNewId)
{
User.BillingOption = "Arrears";
ModifyUser();
Save the file and restart IIS.
Was this article helpful?