<?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[Cal EXT3 - Symbols and colors]]></title><description><![CDATA[<p dir="auto">I apologize for a every repeating question, but I cant figure it out completely.</p>
<p dir="auto">So I want to change the color and/or the symbol, if the title has a specific text.<br />
The readme says:</p>
<pre><code>eventTransformer: (ev) =&gt; {
  if (ev.title.search("John") &gt; -1) ev.color = "blue";
  return ev;
};
</code></pre>
<p dir="auto">I also found, that I can be more detailed in styling, when I create a class for a event, like this:</p>
<pre><code>eventTransformer: (event) =&gt; {
if (event.title.includes('Gus')) event.class = "gus"
return event
},
</code></pre>
<pre><code>/* custom.css */

.CX3 .event.gus {
background-color: var(--calendarColor);
color: var(--oppositeColor);
border-radius: 4px;
}
</code></pre>
<p dir="auto">If I want to change the symbol too, Sam said, I can use the same command just with “symbol” instead of color, I guess this?</p>
<pre><code>eventTransformer: (ev) =&gt; {
  if (ev.title.search("John") &gt; -1) ev.symbol= "WHAT TO PUT HERE";
  return ev;
};
</code></pre>
<p dir="auto">Obviously I dont know how to put the symbol or the link to the symbol.  I set “useIconify:true”, would this mean I can use ANY of the Iconify symbols by their name like “material-symbols:ar-on-you-outline-sharp”? Looks too easy to me, so I guess no.</p>
<p dir="auto">If someone has time to spare Id appreciate some help.</p>
]]></description><link>https://forum.magicmirror.builders/topic/19881/cal-ext3-symbols-and-colors</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 15:02:59 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/19881.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 20 Sep 2025 07:17:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sun, 21 Sep 2025 15:28:11 GMT]]></title><description><![CDATA[<p dir="auto">Sam, nevermind the problem; I found a sentence in a different question on git, in which it is mentioned shortly; also its kind of written in a config, believe it was the ext3 config.</p>
<p dir="auto">Still a bit annoying that you have to make an entry for the color and on another spot/file you have to set the custom event up.<br />
Thanks for your continuous help mate.</p>
]]></description><link>https://forum.magicmirror.builders/post/128346</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128346</guid><dc:creator><![CDATA[_V_]]></dc:creator><pubDate>Sun, 21 Sep 2025 15:28:11 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sun, 21 Sep 2025 14:17:57 GMT]]></title><description><![CDATA[<p dir="auto">Ok so I tried updating and “repairing” the module, turning the default cal class off but leads only to no icon shown.<br />
I actually dont care if its Iconify or FA, but neither of them work ffs</p>
]]></description><link>https://forum.magicmirror.builders/post/128343</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128343</guid><dc:creator><![CDATA[_V_]]></dc:creator><pubDate>Sun, 21 Sep 2025 14:17:57 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sun, 21 Sep 2025 12:26:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/_v_" aria-label="Profile: _V_">@<bdi>_V_</bdi></a> I see the same, except, if you click on the event, the popover comes up and the color is there…</p>
<p dir="auto">the symbol doesn’t work…</p>
<p dir="auto">there is text in the readme about the iconify  icon set…</p>
]]></description><link>https://forum.magicmirror.builders/post/128336</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128336</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 21 Sep 2025 12:26:37 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sun, 21 Sep 2025 06:45:08 GMT]]></title><description><![CDATA[<p dir="auto">Mornin Sam<br />
So I put it in the ext3 block but that didnt change anything.<br />
I set “useIconify: false” to check if the fontawesome would work, but nothing too.</p>
<p dir="auto">Also I wonder why I nowhere read about the ev.symbol error in any of the topics :/</p>
]]></description><link>https://forum.magicmirror.builders/post/128335</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128335</guid><dc:creator><![CDATA[_V_]]></dc:creator><pubDate>Sun, 21 Sep 2025 06:45:08 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sat, 20 Sep 2025 14:55:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/_v_" aria-label="Profile: _V_">@<bdi>_V_</bdi></a> the filter/transformer is INSIDE the Ext3 config:{} block…</p>
<pre><code>{
module: "MMM_CalendarExt3",
position:
config:{
   .
.
.
.
  eventTransformer: (ev) =&gt; {
        if (ev.title.search("John") &gt; -1){
              ev.symbol= "\f015";
             ev.color= "blue";
        }
        return ev
   },
 }
},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/128329</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128329</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 20 Sep 2025 14:55:40 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sat, 20 Sep 2025 14:47:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> Tried, no change.</p>
<p dir="auto">Does it matter, where in the ext3 config it is placed, like at the end for example?</p>
]]></description><link>https://forum.magicmirror.builders/post/128328</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128328</guid><dc:creator><![CDATA[_V_]]></dc:creator><pubDate>Sat, 20 Sep 2025 14:47:31 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sat, 20 Sep 2025 14:33:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/_v_" aria-label="Profile: _V_">@<bdi>_V_</bdi></a> sorry, don’t know about that icon library…</p>
<p dir="auto">can you try one of the FA values…</p>
<pre><code>"\f015"
</code></pre>
<p dir="auto">for example</p>
]]></description><link>https://forum.magicmirror.builders/post/128327</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128327</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 20 Sep 2025 14:33:29 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sat, 20 Sep 2025 14:21:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> OK no error, color is shown but no symbol.<br />
Did I miss some basic setting in the modules config?</p>
]]></description><link>https://forum.magicmirror.builders/post/128326</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128326</guid><dc:creator><![CDATA[_V_]]></dc:creator><pubDate>Sat, 20 Sep 2025 14:21:43 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sat, 20 Sep 2025 14:04:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/_v_" aria-label="Profile: _V_">@<bdi>_V_</bdi></a> ok, symbol is a list…</p>
<p dir="auto">use<br />
ev.symbol.push( “mdi:birthday-cake-outline”)</p>
<p dir="auto">instead of<br />
ev.symbol=</p>
]]></description><link>https://forum.magicmirror.builders/post/128325</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128325</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 20 Sep 2025 14:04:38 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sat, 20 Sep 2025 13:53:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> I finally understood what you meant by put in filter…^^</p>
<p dir="auto">So I set the additional {} and the cal stopped again, message saing:</p>
<p dir="auto"><strong>TypeError: event.symbol.join is not a function</strong></p>
<p dir="auto">Does this give you any clue or do you need the additional “at …” lines too?</p>
]]></description><link>https://forum.magicmirror.builders/post/128324</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128324</guid><dc:creator><![CDATA[_V_]]></dc:creator><pubDate>Sat, 20 Sep 2025 13:53:48 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sat, 20 Sep 2025 13:09:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/_v_" aria-label="Profile: _V_">@<bdi>_V_</bdi></a> if you want to set multiple properties on this event when the if condition is true</p>
<p dir="auto">the you need { }<br />
after the if()</p>
<p dir="auto">otherwise only the first is used when the condition is true…</p>
<p dir="auto">you would have to open the browser developers window to see what the problem is<br />
ctrl-shift-i (chrome)<br />
console tab,<br />
put ext3 in the filter field.</p>
]]></description><link>https://forum.magicmirror.builders/post/128323</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128323</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 20 Sep 2025 13:09:04 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sat, 20 Sep 2025 12:34:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> Hey Sam<br />
As soon as I try to use symbol, the calender wont load up - I see the current month but thats about it.<br />
I tried different icon, I tried changing only symbol and I tried putting up a transform command for color and symbol seperately</p>
<pre><code>eventTransformer: (ev) =&gt; {
if (ev.title.search("Geburtstag") &gt; -1)
ev.symbol= "mdi:birthday-cake-outline";
ev.color= "ff00ff";
return ev
 },
</code></pre>
<p dir="auto">I also tried your version with the additional {}, but no change either way<br />
I put this into the ext3 config file, using iconify icons</p>
]]></description><link>https://forum.magicmirror.builders/post/128322</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128322</guid><dc:creator><![CDATA[_V_]]></dc:creator><pubDate>Sat, 20 Sep 2025 12:34:24 GMT</pubDate></item><item><title><![CDATA[Reply to Cal EXT3 - Symbols and colors on Sat, 20 Sep 2025 11:33:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/_v_" aria-label="Profile: _V_">@<bdi>_V_</bdi></a></p>
<p dir="auto">Yes, really that simple</p>
<pre><code class="language-js">eventTransformer: (ev) =&gt; {
  if (ev.title.search("John") &gt; -1) {
          ev.symbol= "WHAT TO PUT HERE";
          ev.color= ‘blue’
  }
  return ev;
};
</code></pre>
<p dir="auto">When using the font-awesome set,<br />
They give you a name or a number, you can use either value<br />
I dont know the set you picked</p>
<p dir="auto">Fa house is ‘house’ or ‘\f015’</p>
<p dir="auto"><img src="/assets/uploads/files/1758367887199-img_3918.png" alt="IMG_3918.png" class=" img-fluid img-markdown" width="1320" height="2868" /></p>
]]></description><link>https://forum.magicmirror.builders/post/128320</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128320</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 20 Sep 2025 11:33:23 GMT</pubDate></item></channel></rss>