最近搜索


没有最近搜索

Birita Christiansen's Avatar

Birita Christiansen

已加入2021年4月16日

·

最后活动2022年2月01日

关注

0

关注者

0

活动总数

1

投票

0

订阅

0

活动概览

的最新活动 Birita Christiansen

Birita Christiansen 进行了评论,

社区评论 Discussion - Tips and best practices from the community

Hi Wes & everyone else

Thanks for this - it was very helpful :-)

We at ChurchDesk also has the issue with supporting different languages. This is how we solved it:

We modified the JS code to identify the language selected on your Zendesk helpdesk. We find this by inspecting the browser in every language.

We added this: var lang = $('html').attr('lang');
So if you have these languages: Danish, English and German, my tags will be: alert-da, alert-de & alers-en-US which I can add to the respected articles for every country.

To use this method, you can copy and replace the code below. Remember to change the "YOURDOMAIN" part.

// MW-Notification Banner

var lang = $('html').attr('lang');

  $.get( "https://YOURDOMAIN/api/v2/help_center/articles.json?label_names=alert-" + lang ).done(function( data ) {

  $.each(data.articles, function(index,item) {

    var style1 = '

' + item.title + '' + item.body + '

'        

    $('.alertbox').append(style1);

  });

  $('.ns-close').on('click',function(){

   $(".alertbox").remove();

 });

 

查看评论 · 已于 2017年1月19日 发布 · Birita Christiansen

0

关注者

0

投票

0

评论