<?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[Filter events on Calendar Module]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">I’m working on a project that uses the MagicMirror to show where is happening the meetings and presentations like rooms and security issues.<br />
Does anyone know if it’s possible to filter on a calendar only some events by it’s name or specific words?<br />
Thanks in advance!</p>
<p dir="auto">Kind regards,</p>
]]></description><link>https://forum.magicmirror.builders/topic/10541/filter-events-on-calendar-module</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Apr 2026 23:09:03 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/10541.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 30 May 2019 06:20:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Filter events on Calendar Module on Wed, 29 Apr 2020 19:45:42 GMT]]></title><description><![CDATA[<p dir="auto">Where do you paste that code? config.js?</p>
]]></description><link>https://forum.magicmirror.builders/post/73976</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/73976</guid><dc:creator><![CDATA[a94marbo]]></dc:creator><pubDate>Wed, 29 Apr 2020 19:45:42 GMT</pubDate></item><item><title><![CDATA[Reply to Filter events on Calendar Module on Sat, 28 Mar 2020 13:36:28 GMT]]></title><description><![CDATA[<p dir="auto">Hey <a class="plugin-mentions-user plugin-mentions-a" href="/user/pedromrsantos" aria-label="Profile: pedromrsantos">@<bdi>pedromrsantos</bdi></a>,</p>
<p dir="auto">I know this post is quite old but I have just gotten around to setting up my new MM setup, not sure if filtering can be done with the standard calendar but it is possible with the module ‘MMM-CalendarExt2’.</p>
<p dir="auto">With this example I am able to filter out events that have ‘birthday’ in the title:</p>
<pre><code>filter: (event) =&gt;{
  if (event.title.search(“Birthday”) &gt; -1) {
    return true
  } else {
    return false
  }
},
</code></pre>
<p dir="auto">On my setup I am importing 3 ics files and the displaying different views on my screen, one of them is a list of birthdays from three calendars.</p>
<p dir="auto">Let me know if you need more info.</p>
<p dir="auto">Cheers</p>
<p dir="auto">Nathan</p>
]]></description><link>https://forum.magicmirror.builders/post/71291</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/71291</guid><dc:creator><![CDATA[NathTheDude]]></dc:creator><pubDate>Sat, 28 Mar 2020 13:36:28 GMT</pubDate></item></channel></rss>