How do I restrict customers from editing the ticket properties after a ticket is submitted?

Modified on Sun, 9 Mar at 4:24 PM

You can use the below-displayed code to restrict the customer from editing the ticket fields after a ticket is submitted. 


Please navigate to Admin--> Channels > Portals -->Customize portal-->Layout & pages-->Portal pages-->paste the below code under the Ticket details section,


<script>

  jQuery('#portal_ticket_form .controls').each(function() { 

    jQuery(this).children().attr('disabled','disabled'); 

  });

  jQuery('#helpdesk_ticket_submit').attr('disabled','disabled')

</script>


This would be possible only from the Estate plan onwards in Freshdesk. 


Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article