
Ifra Saqlain
-
총 활동 수997
-
마지막 활동
-
회원 가입일
-
내가 팔로우하는 사용자 수0명
-
나를 팔로우하는 사용자 수19명
-
투표 수26
-
플랜 수261
활동 개요
Ifra Saqlain님의 최근 활동-
Ifra Saqlain님이 에 댓글을 입력함
Hi Oxana, as you can see this query has Answered tag so this has been solved in 15 Sep 2021. Maybe some changes have happened so this document is no longer available here You need to add {{descri...
-
Ifra Saqlain님이 에 댓글을 입력함
Hi Dave Potts, This is the solution: https://support.zendesk.com/hc/en-us/community/posts/4409515169946-Requiring-a-ticket-attachment-if-a-particular-dropdown-option-is-selected and also, I'm sha...
-
Ifra Saqlain님이 에 댓글을 입력함
Hey Paul, actually I didn't try but I'll and get back to you with the solution :) for you.
-
Ifra Saqlain님이 에 댓글을 입력함
So you can try this snippet instead of form ID: if($("#new_request a.nesty-input").is(':contains("MY Form Name")')){ console.log("yes!");}else{ console.log("no!")} I simply tested it by console m...
-
Ifra Saqlain님이 에 댓글을 입력함
Hi Paul, you can try the above solution, use form-tag instead of form-id as Jahn Bronilla did. He hides their forms from non-authenticated users. You can do like this- if (HelpCenter.user.role=="an...
-
Ifra Saqlain님이 에 댓글을 입력함
Paul, remove the old snippet which I have provided to you before and add this new, here forms are hiding from end_users (non-authenticated users ) only on homepage and dropdown on new-request-page....
-
Ifra Saqlain님이 에 댓글을 입력함
Happy to help :)
-
Ifra Saqlain님이 에 댓글을 입력함
Hi Paul, The code is for non-authenticated person- $(document).ready(function () {//Code for some specific ticket forms -- Startvar tagsToRemove = ['5361962484244']; //special form IDfunction re...
-
Ifra Saqlain님이 에 댓글을 입력함
The above code is only hiding your value from the dropdown field for end-users and anonymous users. Not completely hiding. You want to hide your form name in the dropdown so that code will hide o...
-
Ifra Saqlain님이 에 댓글을 입력함
O God! Jahn you need to add Form IDs here not Form Name. i). Select your form which is in the dropdown which you want to hide. ii). You will reach to that form and get the form id in the search...