最近の検索
最近の検索はありません

Eric Norris
参加日2021年4月15日
·
前回のアクティビティ2024年8月06日
フォロー中
0
フォロワー
0
合計アクティビティ
32
投票
1
受信登録
20
アクティビティの概要
バッジ
記事
投稿
コミュニティへのコメント
記事へのコメント
アクティビティの概要
さんの最近のアクティビティ Eric Norris
Eric Norrisさんがコメントを作成しました:
We got an updated script that seems to work. Not sure how, and there might be a more elegant way of writing it, but it seems to work. Hope this helps:
var tagsToRemove = ['thing_1','thing_2','thing_3'];
removeTagsWeDontWant();
function removeTagsWeDontWant()
{
const removeNodes = (node) => {
for (let i = 0; i < node.childNodes.length; i++) {
const wasRemoved = removeNodes(node.childNodes[i]);
if (wasRemoved) {
i--;
}
}
if (node.nodeType === 1 && tagsToRemove.includes(node.getAttribute("id"))) {
node.parentNode.removeChild(node);
return true;
}
return false;
};
const observer = new MutationObserver(mutationList =>
mutationList.filter(m => m.type === 'childList').forEach(m => {
m.addedNodes.forEach(removeNodes);
}));
document.querySelectorAll('.nesty-panel').forEach(panel => observer.observe(panel,{childList: true, subtree: true}));
}
コメントを表示 · 投稿日時:2024年8月06日 · Eric Norris
0
フォロワー
1
投票
0
コメント
Eric Norrisさんがコメントを作成しました:
Hi Ifra,
I've used your original code for some time now and it worked great. For some reason, today it stopped working in Chrome. Not sure why this is happening as the only changes we made were to add tags as we go, and haven't done that in recent memory. Do you have any ideas? Thanks
Code using for reference:
$(document).ready(function()
{
var tagsToRemove = ['XXXXXX','YYYYYY'];
removeTagsWeDontWant();
function removeTagsWeDontWant()
{
$('.nesty-panel').on('DOMNodeInserted', function(e)
{
for(var i in tagsToRemove)
{
$('li#' + tagsToRemove[i]).remove();
}
});
}
コメントを表示 · 編集日時:2024年8月02日 · Eric Norris
0
フォロワー
2
投票
0
コメント
Eric Norrisさんが投稿を作成しました:
Hello,
When looking at Zendesk API usage (APIs -> Zendesk API -> Activity), I see an average rate usually around the mid teens. When I look at the graph though, it seems like the spikes are in the 200-250 range. I do have the High Volume API because we were expecting some significant API usage, but that hasn't materialized.
I would like the ability to export the hourly rate of API usage over as much time as possible; 2 weeks at least, 90 days would be ideal.
Thanks.
投稿日時:2023年8月29日 · Eric Norris
0
フォロワー
3
投票
0
コメント
Eric Norrisさんが投稿を作成しました:
Hello,
We are doing an exercise in removing and consolidating triggers. We have 315 triggers, and may be able to get them down to just over 200. However, there is no easy way to get the list of triggers we actually have, so this has become a slower process than anticipated.
I would like to see a way to export the list of triggers that are currently active that does not require creating an API. I would like to be able to export a csv file that includes trigger name, category, description and last 7 days of activity. Bonus points if we can chose our own time frame of activity (7 days/14 days/30 days and/or choose date(s)). Extra bonus points if we can also choose active and/or deactivated triggers.
Thanks.
投稿日時:2022年6月14日 · Eric Norris
35
フォロワー
29
投票
17
コメント
Eric Norrisさんが投稿を作成しました:
Hello,
We are getting crashes when using the Zendesk UNIFIED SDK IOS version (Objective-c). After we open and close the Help Center a few times our app crashes with memory warnings. I believe it is an out of memory issue. I would like to know the best way to release (deallocate) memory right after I close the Help Center Screen.
Is this memory issue a known error? Can we have more control over the ticket creation screen and the Help Center screen?
投稿日時:2022年6月06日 · Eric Norris
1
フォロワー
1
投票
0
コメント
Eric Norrisさんが投稿を作成しました:
Hello,
My localization team has an API that it uses to POST and PUT translations for our knowledge base articles. However, when we try to do that with articles that have content blocks, we are seeing that those articles appear blank if we go to edit them. It seems that when the localization team goes to GET the body of the article, the content blocks are not going with it. Is there an API call available where we can get the content blocks in with the article? If not, is there any other solution for automating content block translations?
Thanks.
投稿日時:2022年5月04日 · Eric Norris
1
フォロワー
6
投票
5
コメント
Eric Norrisさんが投稿を作成しました:
Hello,
Sometimes when we want to do a deep dive into a particular issue, we'll use phrases used by either the customer or by our agents to bring up tickets in the Support Search. It would be something along the lines of:
"lorem Ipsum" order_by:created_at sort:desc
Since Explore does not allow us to use the Description textarea field, It would be helpful and efficient if we could export these results right from the search results. If we were able to get a CSV, we could use that in Excel or import that into Looker so we can do out deep dive.
Thanks
投稿日時:2021年12月02日 · Eric Norris
5
フォロワー
3
投票
1
コメント
Eric Norrisさんが投稿を作成しました:
Hello,
Looking at the knew Knowledge and Search dashboard, and I was unable to find a filter for Category. Each of our products has its own category, and various help sections underneath. It would help us to understand the health of our KB articles if we had a per product view using category.
Thanks.
投稿日時:2021年11月29日 · Eric Norris
4
フォロワー
2
投票
1
コメント
Eric Norrisさんが投稿を作成しました:
Hello,
I was looking for an Explore solution for finding the percentage of customers who go to an article that did not submit a ticket shortly thereafter. Looking at the dashboard that came out about 3 weeks ago and checking on metrics, I did not see a way to do this. I do see a way to do that via Google Analytics, but would rather have it within Explore so we can centralize our reports there, as well as reduce the effort of needing to grab data from across various data points.
Thanks.
投稿日時:2021年11月29日 · Eric Norris
8
フォロワー
27
投票
14
コメント