Changing which Data are Required

Customize your system to edit required fields for the Staff Portal.

  1. Edit the appropriate template file in /usr/local/billmax/uatemplates. For example, edit /usr/local/billmax/uatemplates/account.tmp.
  2. Add or remove elements from the required JavaScript array using the ID of the field pre pending with the "#" symbol.

Making the Account Second Address Line Required

Change

required.push('#accountCfname');
required.push('#accountClname');
required.push('#accountAddr1');
required.push('#accountCity');
required.push('#accountZip');
to
required.push('#accountCfname');
required.push('#accountClname');
required.push('#accountAddr1');
required.push('#accountCity');
required.push('#accountZip');
required.push('#accountAddr2');