Recherches récentes


Pas de recherche récente

mccabe.tonna's Avatar

mccabe.tonna

Adhésion le 15 avr. 2021

·

Dernière activité le 02 mai 2022

Community Moderator

Suivis

0

Abonnés

0

Activité totale

52

Votes

0

Abonnements

27

APERÇU DES ACTIVITÉS

Dernière activité effectuée par mccabe.tonna

mccabe.tonna a ajouté un commentaire,

CommentaireTicket basics

@Andrew 

If their primary email is verified; you can search your user functions.

this looks promising via API https://developer.zendesk.com/api-reference/ticketing/users/user_identities/#make-identity-primary although I've never done this before. 

 

Afficher le commentaire · Publication le 02 mai 2022 · mccabe.tonna

0

Abonnés

0

Votes

0

Commentaire


mccabe.tonna a ajouté un commentaire,

CommentaireTicket basics

@Andrew 

can you give an example of what you're looking to achieve?

Afficher le commentaire · Publication le 02 mai 2022 · mccabe.tonna

0

Abonnés

0

Votes

0

Commentaire


mccabe.tonna a ajouté un commentaire,

CommentaireBusiness rules

the checkbox logic should actually be swapped.

{% if ticket.ticket_field_ contains 0 %}
checkbox is unchecked
{% else %}
checkbox is checked
{% endif %}

should actually be

{% if ticket.ticket_field_ contains 1 %}
checkbox is checked
{% else %}
checkbox is unchecked (or null)
{% endif %}

reason: when a checkbox is not visible on a form; it returns null value. This accounts for explicitly checked boxes

Afficher le commentaire · Publication le 16 mars 2022 · mccabe.tonna

0

Abonnés

1

vote

0

Commentaire


mccabe.tonna a ajouté un commentaire,

Commentaire de la communauté Q&A - Tickets and email

@Ali van de Poll 

I had a similar issue where the user's name was either their name or their email address

Instead of having a separate field, why not utilize the requester's name?

I created a liquid-markup dynamic content field that accomplishes something similar

I named the Dynamic content "name" so referencing it is {{dc.name}} on all macros and content

{% if ticket.requester.email == ticket.requester.name %} there{% else %} {{ticket.requester.first_name}}{% endif %}

Example: Hi {{dc.name}},

produces, Hi there, or Hi McCabe,

 

Similarly you could remove the "there" portion and leave it blank

Afficher le commentaire · Publication le 02 nov. 2021 · mccabe.tonna

0

Abonnés

0

Votes

0

Commentaire


mccabe.tonna a ajouté un commentaire,

Commentaire de la communauté Q&A - Help center and community

@... in your help-center, go to your theming, customize, edit code (bottom)

access your script.js function and plop this in there.

Then submit

This will hide the form selector IF they end up on this form. You may need to reference this form via URL directly.

var form = $('#request_issue_type_select').val();
if (form == 1900000215705){
$('.form-field.request_ticket_form_id').hide()
}

In your script.js file, it should look like this.

Let me know if this works for you

Afficher le commentaire · Publication le 13 août 2021 · mccabe.tonna

0

Abonnés

0

Votes

0

Commentaire


mccabe.tonna a ajouté un commentaire,

Commentaire de la communauté Q&A - Help center and community

@... which field are you trying to hide? 

What Do You Need Help With? or the form? 

Afficher le commentaire · Publication le 13 août 2021 · mccabe.tonna

0

Abonnés

0

Votes

0

Commentaire


mccabe.tonna a ajouté un commentaire,

Commentaire de la communauté Developer - Zendesk APIs

@Administradores IZA

Set or get?

If you're trying to set a value you need to include what value you're trying to set - zafClient.set('ticket.customField:custom_field_360018041180', value)

but a Get could look like the following if you want to store to a var - i use this method below to get multiple values at once

client.get(['ticket.customField:custom_field_360018041180']).then(function(data){

     let value = data['ticket.customField:custom_field_360018041180']

})

Afficher le commentaire · Publication le 25 janv. 2021 · mccabe.tonna

0

Abonnés

0

Votes

0

Commentaire


mccabe.tonna a ajouté un commentaire,

Commentaire de la communauté Q&A - Tickets and email

@ryan Can you screenshot the triggers that are firing when a ticket is made?

Ticket Created (1st trigger)

 

 

This trigger at bottom  (this is the "your request was received) (note this trigger does not have any "your ticket was created or updated conditions") 

And since it sits below the setting the no-reply target it gets hit just after the address is set

 

this is ticket received looks like:

Sorry for all the blur - have to keep PII safe 

Afficher le commentaire · Publication le 11 oct. 2019 · mccabe.tonna

0

Abonnés

0

Votes

0

Commentaire


mccabe.tonna a ajouté un commentaire,

Commentaire de la communauté Q&A - Tickets and email

Hi Ryan,

Oh try this - try swapping the order of your triggers around. 

(i had a long hypothesis written up, but this might be a quicker solution) 

 

My order is set the No-reply with the target

then below is the actual email the requester

 

Afficher le commentaire · Publication le 09 oct. 2019 · mccabe.tonna

0

Abonnés

0

Votes

0

Commentaire


mccabe.tonna a ajouté un commentaire,

Commentaire de la communauté Q&A - Tickets and email

Okay so the email should not go out on the Ticket is received Trigger.

Notify the target after your ticket is updated using the first trigger

 

Does that make sense? 

 

Afficher le commentaire · Publication le 09 oct. 2019 · mccabe.tonna

0

Abonnés

0

Votes

0

Commentaire