Start a conversation

Disabling Default Department Selection

Overview

This article provides instructions on disabling default department selection when submitting tickets in the Helpdesk portal.

Process

  1. Default department selection can be disabled by adjusting submitticket_departments template located on this path: Admin CP > Templates > Templates > Tickets > submitticket_departments.
  2. Find the following snippet in the template contents: 
    <td width="16" align="left" valign="middle" class="zebraodd"><input type="radio" name="departmentid" onclick="javascript: ToggleTicketSubDepartments('<{$_item[departmentid]}>');" value="<{$_item[departmentid]}>" id="department_<{$_item[departmentid]}>"<{if $_selectedDepartmentID == $_item[departmentid]}> checked<{/if}> /></td>
  3. Replace the above template snippet with the following content:
    <td width="16" align="left" valign="middle" class="zebraodd"><input type="radio" name="departmentid" onclick="javascript: ToggleTicketSubDepartments('<{$_item[departmentid]}>');" value="<{$_item[departmentid]}>" id="department_<{$_item[departmentid]}>"<{if $_selectedDepartmentID == $_item[departmentid]}> unchecked<{/if}> /></td>
    The only update made to the template is the radio input type changed from checked to unchecked.
    mceclip0.png

    Note: You may need to choose the proper template group before changing your template.

  4. After performing the change, click on the Save button.
Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted

Comments