Recent searches


No recent searches

Editing 'Description shown to end users' for Description field per ticket form

Answered


Posted Feb 11, 2023

 

Hi everyone!

I would like to know how to change the default [Description] ticket field per ticket Brand.

ex)

Brand A's Description on end-user: Please enter detailed PC specifications.

Brand B's Description on end0user: Please enter detailed device name, wifi information.

 

https://support.zendesk.com/hc/en-us/community/posts/4409515376538-Editing-Description-shown-to-end-users-for-Description-field-per-ticket-form?input_string=How%20to%20add%20description%20under%20description%20Field%3F

 

Please shed a light on this~!!!

 


0

2

2 comments

image avatar

Ifra Saqlain

Zendesk LuminaryMost Engaged Community Member - 2022Most Engaged Community Member of The Year - 2021Community Moderator

Hi Haley,

If you share your ticket's brand than I'll share the exact code.

 

Or you can customize by yourself: add the below code to your script.js file at the bottom area and remove 00000000 after that add your ticket brand A form ID and remove 11111111 then add your ticket brand B form ID:

$(document).ready(function (){

if (HelpCenter.user.role=="end_user" || HelpCenter.user.role=="anonymous")

// Ticket Name - Form One
// 000000000 is the ticket id which you would get from your window location (Searchbar)

   if(window.location.href.indexOf('000000000') > -1){
    $("#request_description_hint").html('Custom description for read');
}

// Ticket Name - Form One
// 111111111 is the ticket id which you would get from your window location (Searchbar)

if(window.location.href.indexOf('111111111') > -1){ // 111111111 is the ticket id which you would get from your window location (Searchbar)
$("#request_description_hint").html('Custom description for read');
}
}
  })

 

If any confusion feel free to ask. :)

Thanks 

0


Hi!

Thank you!

May I know how I can find out what my ticket ID is?

Also, I am not sure what the ticket ID itself is. Is it like Brand ID?

0


Please sign in to leave a comment.

Didn't find what you're looking for?

New post