
Tal Admon
-
Total activity27
-
Last activity
-
Member since
-
Following0 users
-
Followed by1 user
-
Votes0
-
Subscriptions16
Activity overview
Latest activity by Tal Admon-
Tal Admon created a post,
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 commented,
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 commented,
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 created a post,
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 commented,
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 commented,
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 commented,
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 commented,
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 commented,
{{#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 created a post,
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...