<?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[Change the way calendar presents day and time]]></title><description><![CDATA[<p dir="auto">After a new installation something goes wrong with the standard calendar module that I use with Apple calendar. As you can see in the photo, there are two different ways to present the date, namely “Wednesday at 00:00” and “27-01-2021”. I would like each calendar note to be displayed as “dd-mm-yy” or “dd-mm”.</p>
<p dir="auto">Unfortunately, I cannot do that, not even by changing the dateFormat in the config.js file. Can someone tell me how to change this so all dates are presented the same way?</p>
<p dir="auto"><img src="/assets/uploads/files/1610973303746-mm.png" alt="MM.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/topic/14461/change-the-way-calendar-presents-day-and-time</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Jul 2026 18:20:26 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/14461.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 18 Jan 2021 12:35:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Change the way calendar presents day and time on Tue, 19 Jan 2021 08:36:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bkeyport" aria-label="Profile: BKeyport">@<bdi>BKeyport</bdi></a> Thanks for your suggestion! I now use the code below which results in what is shown in the image. Exactly what I wanted :-)</p>
<p dir="auto"><img src="/assets/uploads/files/1611045346404-mm.png" alt="MM.png" class=" img-fluid img-markdown" /></p>
<pre><code>			config: {
                                fade: false,
                                maximumEntries: 7,
                                displaySymbol: false,
   				timeFormat: 'absolute',
   				dateFormat: 'ddd D MMM',
  				fullDayEventDateFormat: 'dd DD-MM',
 				urgency: 0,
				calendars: [
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/87498</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/87498</guid><dc:creator><![CDATA[MM-Hans]]></dc:creator><pubDate>Tue, 19 Jan 2021 08:36:26 GMT</pubDate></item><item><title><![CDATA[Reply to Change the way calendar presents day and time on Tue, 19 Jan 2021 00:24:28 GMT]]></title><description><![CDATA[<p dir="auto">If I’m remembering correct (I don’t use the module anymore), it’s having to do with absolute dates. All three of these need to be set…</p>
<pre><code>// Force Absolute to Absolute all the time, michmich *really* hates solid dates, apparently. 
timeformat: "absolute",
getRelative: 0,
urgency: 0 ,
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/87485</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/87485</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Tue, 19 Jan 2021 00:24:28 GMT</pubDate></item></channel></rss>