<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Zendesk Simplified]]></title><description><![CDATA[Zendesk Simplified]]></description><link>https://zendesksimplified.sushantawalekar.com</link><generator>RSS for Node</generator><lastBuildDate>Sat, 25 Apr 2026 01:55:36 GMT</lastBuildDate><atom:link href="https://zendesksimplified.sushantawalekar.com/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Easily Make Your Zendesk Help Center Dropdown Fields Searchable]]></title><description><![CDATA[Hello Zendesk Community!  

💡
Works only for HC Template v3.0


I'm excited to share a solution I've developed for a long-standing issue many of us have faced: making dropdown fields searchable in the Zendesk Help Center.This lightweight, efficient ...]]></description><link>https://zendesksimplified.sushantawalekar.com/easily-make-your-zendesk-help-center-dropdown-fields-searchable</link><guid isPermaLink="true">https://zendesksimplified.sushantawalekar.com/easily-make-your-zendesk-help-center-dropdown-fields-searchable</guid><dc:creator><![CDATA[sushant awalekar]]></dc:creator><pubDate>Thu, 21 Aug 2025 14:35:33 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1755786907487/109f4a7c-1d83-4537-9de8-6f08234a2197.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hello Zendesk Community!  </p>
<div data-node-type="callout">
<div data-node-type="callout-emoji">💡</div>
<div data-node-type="callout-text">Works only for HC Template v3.0</div>
</div>

<p>I'm excited to share a solution I've developed for a long-standing issue many of us have faced: making dropdown fields searchable in the Zendesk Help Center.<br />This lightweight, efficient utility provides a seamless searching experience for dropdowns and offers additional customization options and better UI.  </p>
<p>Request Thread <a target="_blank" href="https://support.zendesk.com/hc/en-us/community/posts/4409222514330-Drop-Down-Field-Searchable#:~:text=The%20Drop%20Down%20field%20is,for%20to%20filter%20out%20others.">here</a>:</p>
<p><img src="https://support.zendesk.com/hc/user_images/01J3JS24GK5DYR9XT1ZH3NNWVE.gif" alt class="image--center mx-auto" /></p>
<h4 id="heading-heres-how-you-can-add-this-to-your-help-center"><strong>Here's how you can add this to your help center</strong></h4>
<p>1. Add the CDN to your Help Center Open your <code>document_head.hbs</code> file and add the following line.</p>
<pre><code class="lang-plaintext">&lt;script src="https://cdn.jsdelivr.net/npm/zenselect@0.1.5/dist/zenselect.min.js"&gt;&lt;/script&gt;
</code></pre>
<p><img src="https://support.zendesk.com/hc/user_images/01J3M9DYE575DP2KEN9E3H9FN8.png" alt /></p>
<p>2. Add the script to your <code>new_request_page.hbs</code> file:  </p>
<pre><code class="lang-plaintext">&lt;script&gt;
    document.addEventListener('DOMContentLoaded', function() {
        zenSelect('4520048004116',{"placeholder":"Select or Type","emptyMessage":"No Results"});
        zenSelect('field_id');
        zenSelect('4514796809492',{"placeholder":"Choose who you are"});
    });
&lt;/script&gt;
</code></pre>
<ul>
<li><em>Replace</em> <code>'4520048004116'</code><em>,</em> <code>'field_id'</code><em>, and</em> <code>'4520371651476'</code> <em>with your actual dropdown field IDs.</em></li>
</ul>
<p><img src="https://support.zendesk.com/hc/user_images/01J3M46JYQYG4E16KPQGCV49HJ.jpeg" alt /></p>
<h4 id="heading-thats-it-your-dropdown-fields-should-now-be-searchable"><strong>That's it! Your dropdown fields should now be searchable. ✌️</strong></h4>
<p><strong><em>(In fact, Utility takes care of all complex manipulations)</em></strong></p>
<h4 id="heading-additional-customization"><strong>Additional Customization:</strong></h4>
<p>This solution also allows for easy customization:</p>
<p>1. Custom Placeholder for dropdown  </p>
<pre><code class="lang-plaintext">zenSelect('4520048004116', {"placeholder":"Select or Type"});
</code></pre>
<p>2. Custom No Results Message:</p>
<pre><code class="lang-plaintext">zenSelect('4520048004116', {"emptyMessage":"No Results"});
</code></pre>
<p>You can combine both options as shown in the initial script.</p>
<p>This solution replaces the old-style dropdown with a more user-friendly, searchable version. It's lightweight, efficient, and easy to add to your help center.</p>
<p>I hope this helps solve a problem many of us have been facing for years. If you find this useful, please consider supporting my work by buying me a coffee ☕ | <a target="_blank" href="https://www.buymeacoffee.com/phoenixer">https://www.buymeacoffee.com/phoenixer</a></p>
<p>Feel free to ask any questions or share your feedback in the comments below!  </p>
<p><strong>Note:</strong> Zendesk has already planned to implement this feature, though the rollout date is uncertain. In the meantime, delight your end-users with a seamless selection experience.</p>
<p><em>Nested dropdowns are not supported at this moment. However, based on feedback and demand, this feature will be included in a future version.</em></p>
]]></content:encoded></item></channel></rss>