Hiding fields in preferences

Customers can configure the Preferences tab so that specific fields are not shown.

  1. First, check the Element ID of the field that you want to hide:.
    1. Right-click the field.
    2. Select Inspect and note the id of the element. Make sure that the element type is either select, input, or textarea.
  2. Next, add code changes inside the zip file:
    1. Search for myProfile.html and apply.html.
    2. Add this code inside $(document).ready function: $(“#<ELEMENT ID>”).parents(“tr”).hide(); This hides all the existing element inside the row of that element, including the label.
    3. Apply this code on both myProfile.html and apply.html
  3. Save the file.