최근 검색


최근 검색 없음

Scott Allison's Avatar

Scott Allison

가입한 날짜: 2021년 5월 28일

·

마지막 활동: 2021년 10월 27일

팔로잉

0

팔로워

0

총 활동 수

2

투표 수

0

가입 플랜

1

활동 개요

님의 최근 활동 Scott Allison

Scott Allison님이 에 댓글을 입력함

커뮤니티 댓글 Q&A - Help center and community

Here's some JavaScript that I placed in my script.js file. I added an empty <ul id="support_categories"></ul> element into header.hbs where I wanted my categories menu to be located. Just replace "mysupportwebsite.com" with the domain name of your Zendesk help center.

var menu = '';
$.get('https://mysupportwebsite.com/api/v2/help_center/' + window.I18n.locale + '/categories.json', function(data) {
    if (data.categories.length) {
        $.each(data.categories, function(id, category) {
             menu = menu + '<li><a href="' + category.html_url + '">' + category.name + '</a></li>';
        });
        $('#support_categories').html(menu);
    }
});

댓글 보기 · 2018년 9월 21일에 게시됨 · Scott Allison

0

팔로워

0

투표 수

0

댓글