최근 검색
최근 검색 없음

Administrator
가입한 날짜: 2021년 5월 28일
·
마지막 활동: 2022년 2월 14일
팔로잉
0
팔로워
0
총 활동 수
4
투표
1
가입 플랜
1
활동 개요
배지
문서
게시물
커뮤니티 댓글
문서 댓글
활동 개요
님의 최근 활동 Administrator
Administrator님이 에 댓글을 입력함
For anyone who is interested, support gave me this code instead and it works great.
var fieldValue = $('.request-details dd');
$.each(fieldValue, function(i, val){
var dd_text = $(val).text();
if (dd_text=="-") { $(val).prev().hide(); $(val).hide();
}
});
댓글 보기 · 2015년 1월 07일에 게시됨 · Administrator
0
팔로워
0
투표 수
0
댓글
Administrator님이 에 게시물을 만듦
I have custom fields and forms and some fields don't appear on certain forms. However, when an end user goes to their ticket, they see all the fields and not just the ones associated with that form. How can I get the Help Center my activities screen to only populate the fields with data? I have this JS logic but have been unable to get it to work. Worse yet, if I modify the theme at all, the "Add reply" button doesn't show up.
$('.request-details dd').each(function() {
var fieldValue = $(this);
if (fieldValue.text() === '-"')
{
fieldValue.prev().remove();
fieldValue.remove();
}
});
Ideas?
2015년 1월 06일에 게시됨 · Administrator
0
팔로워
9
투표 수
14
댓글