Solved

Modify CC Email field

  • 7 April 2023
  • 3 replies
  • 59 views

Userlevel 1
Badge +3

Hi all- does anyone know how to modify the CC field on the submit a ticket view? We want to make it more obvious what it is because we have a custom business field that is also often referred to as CC (unrelated). We’d like to change it from CC to something like “Add CC to copy someone on your request”.

 

Thanks in advance!

Anna

icon

Best answer by aravind.sundararajan 10 April 2023, 17:53

View original

3 replies

Userlevel 2
Badge +6

Hi @brownae ,

Greetings from Freshworks Community!

There is no direct way to change the label for “CC”. But as a workaround, You can change the Label for the email field like this:(Admin->Ticket Fields->Requester)
 

It will look like this in the portal:
 


I hope this helps. Please reply back if you have any queries.

Cheers,
Jebas D.

Userlevel 4
Badge +12

Hi @brownae You can also customize the “Add CC” label by including a piece of jQuery code on the portal. You can add the following under Admin > Portals > Customize Portal > Pages > Submit ticket section.

 

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#new-ticket-cc-toggle").text("Add CC to copy someone on your request");
});
</script>

The CC button would look like this:

 

 

Cheers!

Userlevel 1
Badge +3

Thanks, Aravind! That worked like a charm.

Reply