<?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[Blog Search Box]]></title><description><![CDATA[<p dir="auto">Hello everyone - I've made my own search box and I'm sharing the code here.</p>
<p dir="auto">Features:<br />
Searches your blog title and subtitles for the user inputted keywords. If it matches the title, return it. If it matches the sub title (meta description) of the blog post, label it with a special indicatory, like "(related)".</p>
<p dir="auto">Automatically opens a new tab towards that blog post when selected.</p>
<p dir="auto">Demo:<br />
<a href="https://www.visigo.fr/blogsearch.html" rel="nofollow ugc">https://www.visigo.fr/blogsearch.html</a></p>
<p dir="auto">Three steps:</p>
<p dir="auto"><strong>Step 1 (Setup):</strong></p>
<p dir="auto"><strong>a) Add a simple "Searchable List" component to your page.</strong><br />
<img src="/assets/uploads/files/1606771949136-screen-shot-2020-11-30-at-10.31.03-pm.png" alt="Screen Shot 2020-11-30 at 10.31.03 PM.png" class="img-responsive img-markdown" /></p>
<p dir="auto"><strong>b) Give that Searchable List component an identifier (I recommend "blog-search" - you will have less settings to change later)</strong><br />
<img src="/assets/uploads/files/1606772144072-screen-shot-2020-11-30-at-10.35.34-pm.png" alt="Screen Shot 2020-11-30 at 10.35.34 PM.png" class="img-responsive img-markdown" /></p>
<p dir="auto"><strong>c) Add a "jQuery Source Code" object to your page.</strong><br />
<img src="/assets/uploads/files/1606772040556-screen-shot-2020-11-30-at-10.33.56-pm.png" alt="Screen Shot 2020-11-30 at 10.33.56 PM.png" class="img-responsive img-markdown" /></p>
<p dir="auto"><strong>d) Add some blog posts if you don't have any:)</strong></p>
<p dir="auto"><strong>Step 2:</strong><br />
Open the jQuery Source Code, replace EVERYTHING by <a href="https://gist.github.com/danielthedifficult/b685a869b09ff4e6b236592e60918863" rel="nofollow ugc">pasting this code.</a><br />
You MUST modify the first two parameters or else it will not work. You must also modify the BLOG_SEARCH_SELECTOR and BLOG_SEARCH_LANGUAGE to reflect your actual use case.</p>
<p dir="auto"><strong>Step 3:</strong><br />
Save your page, load it up and try it out!</p>
<p dir="auto">If you want to change the action taken after the user selects an option, modify line ~48 "window.open(data.url)" and change it to whatever you'd like.</p>
<p dir="auto"><strong>Additional info:</strong></p>
<ul>
<li>
<p dir="auto">This does not allow you to search categories or tags. This could theoretically be implemented, but I'd need your help to understand the best use cases.</p>
</li>
<li>
<p dir="auto"><strong>Accented characters:</strong><br />
I've decided to disregard accented characters when making the comparison. This is to allow people to choose how they search for topics, especially if they are searching in a language that is not the default one on their keyboard. The details of how this is processed is in the removeDiacritics function.</p>
</li>
<li>
<p dir="auto">FYI, <strong>AppDrag's blog API</strong> returns the results in this format, which you can access using the data variable returned after user selection:</p>
</li>
</ul>
<pre><code>{
            "id": "9", // Integer of the blog post ID number
            "appID": "your-app-id",
            "title": "The Title of your Blog Post",
            "subTitle": "The meta description of your Blog Post",
            "imageUrl": "uploads/url-of-your-blog-photo",
            "tags": "blog-post-tags",
            "category": "[\"4\",\"5\"]", // Blog post categories as JSON stringified array
            "author": "John Doe",
            "nbReads": "152",
            "previewID": "b2b6bxd2-exxe-480c-abf4-a2908s2b4829", // GUID of blog preview ID
            "totalRead": "152",
            "isPublished": "True",
            "PublishDate": "2020-10-20 09:34:05",
            "formattedDate": "20 octobre, 2020",
            "lastUpdate": "2020-08-31 13:56:39"
        }
</code></pre>
]]></description><link>https://community.appdrag.com/topic/536/blog-search-box</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Apr 2026 09:52:49 GMT</lastBuildDate><atom:link href="https://community.appdrag.com/topic/536.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 30 Nov 2020 21:02:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Blog Search Box on Tue, 04 May 2021 19:05:43 GMT]]></title><description><![CDATA[<p dir="auto">Hi Daniel,<br />
I've placed in a full line (one column) without any padding or margin... Just in a line on top of top of the blog Article list 4.<br />
I don't know.<br />
I'll investigate further later.<br />
Thanks for your help Daniel.</p>
]]></description><link>https://community.appdrag.com/post/3388</link><guid isPermaLink="true">https://community.appdrag.com/post/3388</guid><dc:creator><![CDATA[Olivier MAGNIN]]></dc:creator><pubDate>Tue, 04 May 2021 19:05:43 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Mon, 03 May 2021 22:39:41 GMT]]></title><description><![CDATA[<p dir="auto">Hi Olivier,</p>
<p dir="auto">If you share the link to the page I'll be able to better investigate.</p>
<p dir="auto">My first instinct is to add padding/margin to the search box, or revisit its position in the page - something is forcing it to be that small.</p>
<p dir="auto">Thanks for trying it out!</p>
]]></description><link>https://community.appdrag.com/post/3383</link><guid isPermaLink="true">https://community.appdrag.com/post/3383</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Mon, 03 May 2021 22:39:41 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Sun, 02 May 2021 12:22:59 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/9">@Daniel-Mulroy</a> , I'v tried your code in my site. It works fine.<br />
I'm just facing an issue in preview mode, the input box is not taking all the line space available and as a result, it's display is very small.<br />
<img src="/assets/uploads/files/1619958172491-capture-d-e-cran-2021-05-02-a-14.22.33.png" alt="Capture d’écran 2021-05-02 à 14.22.33.png" class="img-responsive img-markdown" /><br />
I see in your own website that it is sized correctly !<br />
Can you tell me how I shall solve this ?</p>
]]></description><link>https://community.appdrag.com/post/3380</link><guid isPermaLink="true">https://community.appdrag.com/post/3380</guid><dc:creator><![CDATA[Olivier MAGNIN]]></dc:creator><pubDate>Sun, 02 May 2021 12:22:59 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Tue, 08 Dec 2020 12:38:34 GMT]]></title><description><![CDATA[<p dir="auto">Perfect- works perfectly. Thank you <a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/2">@Wassim</a>  <img src="https://community.appdrag.com/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=lfk1vimvd74" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
<p dir="auto">is there any documentation for these wonderful AppDrag features like translating, storing cookies/local storage, and resourcesLoader?</p>
<p dir="auto">Can I help create some?</p>
]]></description><link>https://community.appdrag.com/post/2180</link><guid isPermaLink="true">https://community.appdrag.com/post/2180</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Tue, 08 Dec 2020 12:38:34 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Tue, 08 Dec 2020 07:34:44 GMT]]></title><description><![CDATA[<p dir="auto">Ok I digged into it and you are missing the last parameter (I didn't provide it to you)</p>
<p dir="auto">There is a last parameter to check if it's already on the page, try that :</p>
<pre><code>resourcesLoader.loadResources("select2", "//" + cdnPath + "/resources/assets/select2/select2.min.css?v=1","//" + cdnPath + "/resources/assets/select2/select2.min.js", setupBlogSearch, typeof($("body").select2) != "undefined")

</code></pre>
]]></description><link>https://community.appdrag.com/post/2173</link><guid isPermaLink="true">https://community.appdrag.com/post/2173</guid><dc:creator><![CDATA[Wassim]]></dc:creator><pubDate>Tue, 08 Dec 2020 07:34:44 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Mon, 07 Dec 2020 14:42:24 GMT]]></title><description><![CDATA[<p dir="auto">Thanks <a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/2">@Wassim</a></p>
<p dir="auto">You are right that it doesn't work in private tab.</p>
<p dir="auto">Sorry to keep revisiting this, but I can't quite seem to figure it out.</p>
<p dir="auto">Directly following "Loading select2..." I am using resourcesLoader to load select2, and then submitting setupBlogSearch as the callback.</p>
<p dir="auto">Yet, the blogSearch bar doesn't load.</p>
<p dir="auto">If you type setupBlogSearch() into the console after "Loading select2", you will see that it works perfectly.</p>
<p dir="auto">So, is it getting called or not? If not, why not?</p>
]]></description><link>https://community.appdrag.com/post/2163</link><guid isPermaLink="true">https://community.appdrag.com/post/2163</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Mon, 07 Dec 2020 14:42:24 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Mon, 07 Dec 2020 13:10:50 GMT]]></title><description><![CDATA[<p dir="auto">For me it doesn't appear on both... Did you try on private navigation?</p>
]]></description><link>https://community.appdrag.com/post/2160</link><guid isPermaLink="true">https://community.appdrag.com/post/2160</guid><dc:creator><![CDATA[Wassim]]></dc:creator><pubDate>Mon, 07 Dec 2020 13:10:50 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Mon, 07 Dec 2020 12:55:05 GMT]]></title><description><![CDATA[<p dir="auto">The problem is that setupBlogSearch doesn't seem to get called properly on the live site.</p>
<p dir="auto">If it gets called properly, the search bar fades in below the "NOS ARTICLES" text.</p>
]]></description><link>https://community.appdrag.com/post/2158</link><guid isPermaLink="true">https://community.appdrag.com/post/2158</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Mon, 07 Dec 2020 12:55:05 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Mon, 07 Dec 2020 07:50:18 GMT]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">On both I don't see a Select2 and I have this in the console :</p>
<p dir="auto"><img src="/assets/uploads/files/1607327406333-ef70ed5e-229e-4ec4-8e56-326e4a48280f-image.png" alt="ef70ed5e-229e-4ec4-8e56-326e4a48280f-image.png" class="img-responsive img-markdown" /></p>
]]></description><link>https://community.appdrag.com/post/2150</link><guid isPermaLink="true">https://community.appdrag.com/post/2150</guid><dc:creator><![CDATA[Wassim]]></dc:creator><pubDate>Mon, 07 Dec 2020 07:50:18 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Sun, 06 Dec 2020 16:59:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/2">@Wassim</a></p>
<p dir="auto">Sorry Wassim, the code you suggested seems to work in preview but not when published:</p>
<pre><code>    addEventListener('load', function(e) {
        console.log("Loading select2...");
        // Load Select2 if not already loaded....
        resourcesLoader.loadResources("select2", "https://" + cdnPath + "/resources/assets/select2/select2.min.css?v=1", "//" + cdnPath + "/resources/assets/select2/select2.min.js", setupBlogSearch);

    }, false);
</code></pre>
<p dir="auto"><a href="https://www.visigo.fr/preview/Blog.html" rel="nofollow ugc">Preview (works)</a></p>
<p dir="auto"><a href="https://www.visigo.fr/Blog.html" rel="nofollow ugc">Public (does not work)</a></p>
<p dir="auto">Can you help?</p>
]]></description><link>https://community.appdrag.com/post/2140</link><guid isPermaLink="true">https://community.appdrag.com/post/2140</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Sun, 06 Dec 2020 16:59:48 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Thu, 03 Dec 2020 12:16:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/9">@Daniel-Mulroy</a> Ah, right, yeah jQuery uses namespace jQuery and $ depending on how you initiate it.</p>
<p dir="auto">PS: nice!</p>
]]></description><link>https://community.appdrag.com/post/2093</link><guid isPermaLink="true">https://community.appdrag.com/post/2093</guid><dc:creator><![CDATA[ThomasD]]></dc:creator><pubDate>Thu, 03 Dec 2020 12:16:38 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Thu, 03 Dec 2020 12:16:16 GMT]]></title><description><![CDATA[<p dir="auto">Sure, I know that - but I didn't realize that inside the jQueryReady context would be different. Either way, I'm very grateful you had the answer!</p>
<p dir="auto">P.S. I've updated it to include the subTitles on search and highlight the word searched for:<br />
<a href="https://www.visigo.fr/preview/Blog.html?ts=23435323322" rel="nofollow ugc">https://www.visigo.fr/preview/Blog.html?ts=23435323322</a> <img src="https://community.appdrag.com/plugins/nodebb-plugin-emoji/emoji/android/1f525.png?v=lfk1vimvd74" class="not-responsive emoji emoji-android emoji--fire" title=":fire:" alt="🔥" /></p>
]]></description><link>https://community.appdrag.com/post/2092</link><guid isPermaLink="true">https://community.appdrag.com/post/2092</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Thu, 03 Dec 2020 12:16:16 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Thu, 03 Dec 2020 06:46:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/9">@Daniel-Mulroy</a></p>
<p dir="auto">You can easily navigate the JS document object, just pop open a console and start writing something like <code>window.</code> and it will show you a list of all functions inside that object.</p>
<p dir="auto">Here an example of the Appdrag setup functions:</p>
<p dir="auto"><img src="/assets/uploads/files/1606977879506-image-2020-12-03-at-7.42.01-am.png" alt="Image 2020-12-03 at 7.42.01 AM.png" class="img-responsive img-markdown" /></p>
<p dir="auto">So in the case of resourcesLoader, it's available just by writing resourcesLoader in the console.</p>
]]></description><link>https://community.appdrag.com/post/2085</link><guid isPermaLink="true">https://community.appdrag.com/post/2085</guid><dc:creator><![CDATA[ThomasD]]></dc:creator><pubDate>Thu, 03 Dec 2020 06:46:45 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Wed, 02 Dec 2020 23:19:27 GMT]]></title><description><![CDATA[<p dir="auto">@Thomas-Djärf I don't know how you knew, but that was it! Thanks so much! I used "load" instead.</p>
]]></description><link>https://community.appdrag.com/post/2084</link><guid isPermaLink="true">https://community.appdrag.com/post/2084</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Wed, 02 Dec 2020 23:19:27 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Wed, 02 Dec 2020 14:30:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/9">@Daniel-Mulroy</a></p>
<p dir="auto">resourcesLoader doesn't seem to be available in the JqueryLoaded scope, try using it outside of it.</p>
]]></description><link>https://community.appdrag.com/post/2081</link><guid isPermaLink="true">https://community.appdrag.com/post/2081</guid><dc:creator><![CDATA[ThomasD]]></dc:creator><pubDate>Wed, 02 Dec 2020 14:30:21 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Wed, 02 Dec 2020 14:23:58 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/2">@Wassim</a>,</p>
<p dir="auto">Thanks for that. I've tried implementing and I'm getting "resourcesLoader is not defined".</p>
<p dir="auto"><a href="https://www.visigo.fr/Blog.html" rel="nofollow ugc">Old ($.getScript) Implementation</a><br />
<a href="https://www.visigo.fr/preview/Blog.html" rel="nofollow ugc">New (AppDrag loader) Implementation:</a></p>
<p dir="auto">Code:</p>
<pre><code>    addEventListener('JqueryLoaded', function(e) {
        // Load Select2 if not already loaded....
        resourcesLoader.loadResources("select2", "//" + cdnPath + "/resources/assets/select2/select2.min.css?v=1","//" + cdnPath + "/resources/assets/select2/select2.min.js", setupBlogSearch)
        
    }, false);
</code></pre>
<p dir="auto">If I copy/paste that into the console once the page is loaded, it runs without an error, but it doesn't actually run setupBlogSearch properly.</p>
<p dir="auto">If I run setupBlogSearch() in the console, things work fine.</p>
<p dir="auto">Any help?</p>
]]></description><link>https://community.appdrag.com/post/2080</link><guid isPermaLink="true">https://community.appdrag.com/post/2080</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Wed, 02 Dec 2020 14:23:58 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Wed, 02 Dec 2020 12:44:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/2">@Wassim</a> Awesome, this is it would be nice with JS docs</p>
]]></description><link>https://community.appdrag.com/post/2079</link><guid isPermaLink="true">https://community.appdrag.com/post/2079</guid><dc:creator><![CDATA[ThomasD]]></dc:creator><pubDate>Wed, 02 Dec 2020 12:44:00 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Wed, 02 Dec 2020 12:05:44 GMT]]></title><description><![CDATA[<p dir="auto">Well in fact you can use AppDrag built-in functions to do it :</p>
<pre><code>resourcesLoader.loadResources("select2",
"//" + cdnPath + "/resources/assets/select2/select2.min.css?v=1",
"//" + cdnPath + "/resources/assets/select2/select2.min.js",
function() {
  // do whatever you want
});
</code></pre>
<p dir="auto">The first param is the plugin name.<br />
The second is the css file.<br />
The third is the js file.<br />
The fourth is the callback when the plugin is loaded, if the plugin with the name "select2" was already loaded then it won't load it another time and instantly call the callback function.</p>
]]></description><link>https://community.appdrag.com/post/2077</link><guid isPermaLink="true">https://community.appdrag.com/post/2077</guid><dc:creator><![CDATA[Wassim]]></dc:creator><pubDate>Wed, 02 Dec 2020 12:05:44 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Wed, 02 Dec 2020 09:05:20 GMT]]></title><description><![CDATA[<p dir="auto">It would be nice if you could modularize these plugins so we can use them in custom code, otherwise we'll end up with larger-than-necessary bloated pages (which is already a problem for the HTML due to the editor adding setting in-line).</p>
]]></description><link>https://community.appdrag.com/post/2072</link><guid isPermaLink="true">https://community.appdrag.com/post/2072</guid><dc:creator><![CDATA[ThomasD]]></dc:creator><pubDate>Wed, 02 Dec 2020 09:05:20 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Wed, 02 Dec 2020 07:20:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/9">@Daniel-Mulroy</a> said in <a href="/post/2057">Blog Search Box</a>:</p>
<blockquote>
<p dir="auto">Wassim I'm having a problem on a production page, actually - it's trying to execute the .select2() BEFORE the select2 plugin is loaded.<br />
If I take the same code</p>
</blockquote>
<p dir="auto">Right, it's better to import it yourself if you need it directly. AppDrag imports it in a particular way when your website requires one. It won't be re-imported if you already import it <img src="https://community.appdrag.com/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=lfk1vimvd74" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://community.appdrag.com/post/2063</link><guid isPermaLink="true">https://community.appdrag.com/post/2063</guid><dc:creator><![CDATA[Wassim]]></dc:creator><pubDate>Wed, 02 Dec 2020 07:20:49 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Tue, 01 Dec 2020 15:36:28 GMT]]></title><description><![CDATA[<p dir="auto">I've fixed this by including a jQuery .getScript and getting 4.0.6 myself from CDNJS</p>
<p dir="auto">...It's not ideal, but I was tired of troubleshooting why AppDrag's select2 script was taking so long to come into effect.</p>
]]></description><link>https://community.appdrag.com/post/2058</link><guid isPermaLink="true">https://community.appdrag.com/post/2058</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Tue, 01 Dec 2020 15:36:28 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Tue, 01 Dec 2020 12:15:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/2">@Wassim</a> I'm having a problem on a production page, actually - it's trying to execute the .select2() BEFORE the select2 plugin is loaded.</p>
<p dir="auto">If I take the same code</p>
<pre><code>$(BLOG_SEARCH_SELECTOR).select2({
                                data: select2data,
                                matcher: titleAndSubtitle   
                            });
</code></pre>
<p dir="auto">and run it in the console after everything has loaded, it works fine.</p>
<p dir="auto">Do you know how best to wait for select2 to be loaded? I thought it was all part of the same jQuery package from AppDrag.</p>
]]></description><link>https://community.appdrag.com/post/2057</link><guid isPermaLink="true">https://community.appdrag.com/post/2057</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Tue, 01 Dec 2020 12:15:19 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Tue, 01 Dec 2020 11:35:02 GMT]]></title><description><![CDATA[<p dir="auto">Thanks <a class="plugin-mentions-user plugin-mentions-a" href="https://community.appdrag.com/uid/2">@Wassim</a> !</p>
<p dir="auto">If you have any information about how I could turn it into a plugin I'd be happy to try.</p>
]]></description><link>https://community.appdrag.com/post/2054</link><guid isPermaLink="true">https://community.appdrag.com/post/2054</guid><dc:creator><![CDATA[Daniel Mulroy]]></dc:creator><pubDate>Tue, 01 Dec 2020 11:35:02 GMT</pubDate></item><item><title><![CDATA[Reply to Blog Search Box on Tue, 01 Dec 2020 07:30:57 GMT]]></title><description><![CDATA[<p dir="auto">Excellent thank you very much for sharing it !</p>
<p dir="auto"><img src="https://community.appdrag.com/plugins/nodebb-plugin-emoji/emoji/android/1f44f.png?v=lfk1vimvd74" class="not-responsive emoji emoji-android emoji--clap" title=":clap:" alt="👏" /></p>
]]></description><link>https://community.appdrag.com/post/2051</link><guid isPermaLink="true">https://community.appdrag.com/post/2051</guid><dc:creator><![CDATA[Wassim]]></dc:creator><pubDate>Tue, 01 Dec 2020 07:30:57 GMT</pubDate></item></channel></rss>