최근 검색


최근 검색 없음

Bruce Chang On's Avatar

Bruce Chang On

가입한 날짜: 2023년 4월 04일

·

마지막 활동: 2024년 12월 30일

팔로잉

0

팔로워

0

총 활동 수

33

투표 수

20

플랜 수

8

활동 개요

님의 최근 활동 Bruce Chang On

Bruce Chang On님이 에 댓글을 입력함

커뮤니티 댓글 Discussion - Tips and best practices from the community

Amazing!! Thank you so much Domokos! This worked beautifully!

댓글 보기 · 2024년 12월 11일에 게시됨 · Bruce Chang On

0

팔로워

0

투표 수

0

댓글


Bruce Chang On님이 에 댓글을 입력함

커뮤니티 댓글 Discussion - Tips and best practices from the community

Hi Domokos, 

 

so I added the code to the bottom of my script.js file and it worked. The only issue I have is that I am still seeing the description details, which I think is supposed to be hidden by this line:

 

const descriptionDetails = container.querySelector("p:contains('Please enter the details of your request.')");

 

Would you be able to help me also hide the attachments?

 

Thank you.

댓글 보기 · 2024년 12월 10일에 게시됨 · Bruce Chang On

0

팔로워

0

투표 수

0

댓글


Bruce Chang On님이 에 댓글을 입력함

커뮤니티 댓글 Discussion - Tips and best practices from the community

Hi Domokos, 

 

thank you for this. Is there a specific place in the Script.js file where this should be input?

 

Also, can you point out which variables we should change to customize to our form? (i.e. Form ID, the info we want input into the subject and description etc.?


it's a bit confusing to figure out what should be replaced in the code for our particular scenario.

 

Thanks again for posting this. Super helpful!

 

댓글 보기 · 2024년 12월 10일에 게시됨 · Bruce Chang On

0

팔로워

0

투표 수

0

댓글


Bruce Chang On님이 에 댓글을 입력함

댓글How to customize the theme of the help center

Thank you Jan,

 

I am following that post. I hope there is a solution

댓글 보기 · 2024년 12월 04일에 게시됨 · Bruce Chang On

0

팔로워

0

투표 수

0

댓글


Bruce Chang On님이 에 댓글을 입력함

댓글How to customize the theme of the help center

Hi All, 

 

very new to Zendesk and not very strong at coding. I'm basically looking for a way to hide the Subject, Attachment and Description fields on a specific form.

 

Using Copenhagen Theme version 4.1.0

Templating API v4

 

I've landed on this but not sure exactly where I should insert the code. Can anyone give me some directions please?

 

var ticketForm = location.search.split('ticket_form_id=')[1];

if(ticketForm == 28674919414929) {
$('.form-field.request_subject').hide(); // Hide subject
$('.form-field.request_description').hide(); // Hide description
$('.form-field.string.optional.request_cc_emails').hide();// Hide CCs 
$('.form-field label:contains("Attachments")').hide(); // Hide label for Attachments
$('#upload-dropzone').hide(); // Hide upload box for Attachments
$('#request_subject').val('New EAP Appointment Request'); // autofill subject
$('#request_description').val('See details in the fields to the left'); // autofill description
}

 

I've basically added it at the bottom of my Script.js file

댓글 보기 · 2024년 11월 27일에 편집됨 · Bruce Chang On

0

팔로워

0

투표 수

0

댓글