最近搜索


没有最近搜索

Marsy's Avatar

Marsy

已加入2022年1月24日

·

最后活动2024年8月24日

关注

2

关注者

0

活动总数

45

投票

6

订阅

23

活动概览

的最新活动 Marsy

Marsy 进行了评论,

社区评论 Feedback - Chat and Messaging (Chat)

I still havent heard back, you can close this 

查看评论 · 已于 2024年8月09日 发布 · Marsy

0

关注者

0

投票

0

评论


Marsy 创建了一个帖子,

帖子 Q&A - Help center and community

I would like to hide a dropdown ticket field value on a form when a user is not part of a particular organization.  

已于 2024年8月07日 发布 · Marsy

0

关注者

0

投票

0

评论


Marsy 进行了评论,

社区评论 Feedback - Apps and integrations (Platform)

I am having a similar issue.  We have added our content into the dynamic content items for a few ticket field names with a default language of English and a variant of Spanish.  I have replaced the names in our ticket fields drop down to use the dynamic content placeholders.  However I am unable to pull the ticket field using the ticket field id and the language.  I have added the following into postman zendesk.com/api/v2/ticket_fields/XXXXXXXXX9217?locale=es with no luck on obtaining the correct verbiage in the correct language.  I only see the dynamic content placeholder

"id": XXXXXXXX769,

"name": "Sensors:: Dexcom:: Syncing/connections issues",

"raw_name": "{{dc.sensors_dexcom_syncing_connections_issues_us}}",

"value": "sensors_dexcom_syncing_connections_issues_us",

"default": false

 

 

查看评论 · 已于 2024年8月06日 发布 · Marsy

0

关注者

0

投票

0

评论


Marsy 创建了一个帖子,

帖子 Feedback - Chat and Messaging (Chat)

I am experiencing a glitch with the conversation bot, published changes are not updating when using the bot and it is accessed via a mobile device for existing users? Users accessing the conversation bot via their mobile device's browser cannot see changes published after they initially accessed the conversation bot.  They will continue to see the older bot workflow and does not ever reflect the updates to the bot.  New users logging in after the new conversation bot will see the changes.  

已于 2024年6月27日 发布 · Marsy

0

关注者

2

投票

2

评论


Marsy 进行了评论,

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

In the side panel in JIRA on the bottom right hand side, you should be able to click on the Zendesk Support dropdown and then click on Add comment to all linked tickets.  The comments in here will be added to the Zendesk ticket as a private comment

查看评论 · 已于 2023年9月26日 发布 · Marsy

0

关注者

0

投票

0

评论


Marsy 进行了评论,

社区评论 Q&A - Help center and community

Hello, I am trying to add icons to sections before the title name.  Do you happen to have any suggestions on coding for this?  I tried a few variations that are not working for me.

查看评论 · 已于 2023年7月24日 发布 · Marsy

0

关注者

0

投票

0

评论


Marsy 进行了评论,

社区评论 Q&A - Help center and community

Hello, I am trying to add a description template based on a custom field id's and their associated tags.  I listed custom field 1 and 3.  Custom field 3 is a child field of Custom Field 1.  My code worked fine up until last week.  For some reason it stopped working and also disabled the users dropdown menu to view their activities and requests.

Here is the code I have added into the JS

/*
$(document).ready(function () {
    var ticketForm = location.search.split("ticket_form_id=")[1];
if(ticketForm == 400000000000) {
    $("#request_description").val();
    }
});

function descriptionFormat(){
        let serviceType = { 
          ID Tag1                        : "1. Do you have the current version of the App? (Update version),
          ID Tag 2                       :""
                }
        
        let IssueType = {
          ID Tag3                       : "Does the member have the current App version?
        }
                
    const serviceTypeNode= document.getElementById(document.querySelector("#new_request > div.form-field.string.required.request_custom_fields_ID_1 > a").getAttribute("aria-controls"));
      
    const config = { attributes: true, childList: true, subtree: true };
        
        const serviceTypeCallback = function (mutationsList, observer) {
            for (const mutation of mutationsList) {
                if (mutation.attributeName == "aria-selected") 
                { 
                    if (Object.keys(serviceType).indexOf(mutation.target.id)>=0) {
                  document.getElementById('request_description_ifr').contentWindow.document.querySelector("p").innerText = serviceType[mutation.target.id];
                          if (mutation.target.id == "ID_3"){
                          const IssueTypeNode= document.getElementById(document.querySelector("#new_request > div.form-field.string.request_custom_fields_ID#.required > a").getAttribute("aria-controls"));
                          issueTypeObserver.observe(IssueTypeNode, config);
                        }
                    }
                    else {
                        document.getElementById('request_description_ifr').contentWindow.document.querySelector("p").innerText = "";
                    }
                }
            }
        };
  
              const IssueTypeCallback = function (mutationsList, observer) {
            for (const mutation of mutationsList) {
                if (mutation.attributeName == "aria-selected") 
                { 
                    if(Object.keys(IssueType).indexOf(mutation.target.id)>=0){
                          document.getElementById('request_description_ifr').contentWindow.document.querySelector("p").innerText = IssueType[mutation.target.id];
                    }
                  else{
                          document.getElementById('request_description_ifr').contentWindow.document.querySelector("p").innerText = serviceType["Issue Type Tag"];
                  }
                }
            }
        };
        
        const serviceTypeObserver = new MutationObserver(serviceTypeCallback);
              const issueTypeObserver = new MutationObserver(IssueTypeCallback);
        
        serviceTypeObserver.observe(serviceTypeNode, config);
    }

if (document.querySelector('#new_request a[aria-label="Please choose your issue below"]').innerText == "Form Name 1"){
        descriptionFormat();
}

查看评论 · 已于 2022年8月09日 发布 · Marsy

0

关注者

0

投票

0

评论


Marsy 进行了评论,

社区评论 Q&A - Users, groups, and organizations

Our company also has a need to set the organization based on a ticket being created with a certain form.  Our company contains coaches who lodge requests on behalf of multiple members.  More than one coach can service a member or hospital. It makes it easier for them to see the log of communication at an organizational level in our help center for our coaches who can view all tickets in their organizations.  It also helps our coaches when they are in the field to review this area to update our Dr's of their patients.  We do not have the organization option open in our form as we extend this form to multiple hospitals and nurses who can also submit tickets on behalf of members.  

My question is, is this something that is on the roadmap for the near future?

查看评论 · 已于 2022年7月21日 发布 · Marsy

0

关注者

0

投票

0

评论


Marsy 进行了评论,

评论Explore recipes

Thank you Dane, I was looking to have the number appear as just a number, but did find a work around for it.

查看评论 · 已于 2022年7月06日 发布 · Marsy

0

关注者

0

投票

0

评论


Marsy 进行了评论,

评论Explore recipes

In this custom field we have links.  In some cases some of our tickets will contain the same link because it is tied to the same field.  How would I exclude the counts where this is a duplicate link as I only want to get the actual number of links, not the tickets containing the links

 

查看评论 · 已于 2022年6月24日 发布 · Marsy

0

关注者

0

投票

0

评论