
Tal Admon
-
Activité totale27
-
Dernière activité
-
Membre depuis
-
Abonné à0 utilisateur
-
Abonnés1 utilisateur
-
Votes0
-
Abonnements16
Aperçu des activités
Dernière activité effectuée par Tal Admon-
Tal Admon a créé une publication,
Request feedback after negative article vote
We have found a nice way of handling user feedback on negative votes - here it goes: 1. Add a new text field called "Originated Article" - note its ID (31107517 in my example). 2. Add a new form ca...
-
Tal Admon a ajouté un commentaire,
Hi Diego, Not all objects are available in all template pages. In the case of the Home page, the User object is not available. Compare, for example the list of available properties of the Home page...
-
Tal Admon a ajouté un commentaire,
Hi Diego, You can do this with a bit of javascript: see example below. The script: note that I set an empty span with the id "user_name". Then, I populate it according to the value of HelpCenter o...
-
Tal Admon a créé une publication,
Video background on Category Page
This nice enhancement is based on the Humble Squid theme. See live example at: https://moderatortal.zendesk.com/hc/en-us This enhancement is based on the VideoBG plugin by Syd Lawrence:http://sy...
-
Tal Admon a ajouté un commentaire,
Hi Lisa, Adding the following Script tag in the Header section in the Theme Editor will do. The custom link will be shown to anonymous and logged in users as well. See live at: https://moderatortal...
-
Tal Admon a ajouté un commentaire,
Hi Danielle, This is a nice way of using assets in order to create category banners. The problem with this method is that it requires the category name to be a single word (without spaces). You can...
-
Tal Admon a ajouté un commentaire,
Hi Ola, Adding this code in the theme editor Article page will do the trick: <script>$( document ).ready(function() { change_text = function(){ str = $('.article-vote-label').html(); str = str.rep...
-
Tal Admon a ajouté un commentaire,
There are no logical operators in Handlebars.js... Just add another nested {{#is}} - maybe others have a better idea? {{#each categories}} {{#is name 'Product Updates'}} {{else}} {{#is name 'G...
-
Tal Admon a ajouté un commentaire,
{{#if}} helper does not supports conditions like equal, not equal, etc. What you can do is use the {{#is}} helper within the {{#each}} to, for example, prevent a category from showing up in the cat...
-
Tal Admon a créé une publication,
How to add tabs to your Help Center home page
I implemented tabs using jQuery-UI tabs plugin, which makes it quite simple to embed in Zendesk Help Center home-page. First, download jquery-ui from their website, with your favorite design, and...