<?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[MMM-CalendarExt3 shows both start and end time.  How to stop showing end time.]]></title><description><![CDATA[<p dir="auto">I recently installed MMM-CalendarExt3.  It currently shows both the start and end time of each event.  Is there a way to stop displaying the end time?  None of the pictures I saw online show an end time.  I would appreciate any help.<br />
<img src="/assets/uploads/files/1746558272136-b9e08cce-6ff0-486f-a584-05e7af170094-calendar-issue-resized.jpeg" alt="b9e08cce-6ff0-486f-a584-05e7af170094-calendar issue.jpeg" class=" img-fluid img-markdown" width="2992" height="2361" /> calendar issue.jpeg</p>
]]></description><link>https://forum.magicmirror.builders/topic/19656/mmm-calendarext3-shows-both-start-and-end-time.-how-to-stop-showing-end-time.</link><generator>RSS for Node</generator><lastBuildDate>Mon, 14 Sep 2026 21:16:12 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/19656.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 06 May 2025 19:05:22 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-CalendarExt3 shows both start and end time.  How to stop showing end time. on Thu, 08 May 2025 21:12:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bobbylx" aria-label="Profile: bobbylx">@<bdi>bobbylx</bdi></a> Thanks for your help.  I did not use your config.js recommendation because it just looks like you are converting celsius to fahrenheit.  I did use the custom.css lines and it worked great.  Thanks again.</p>
]]></description><link>https://forum.magicmirror.builders/post/126381</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/126381</guid><dc:creator><![CDATA[EngrAg81]]></dc:creator><pubDate>Thu, 08 May 2025 21:12:07 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt3 shows both start and end time.  How to stop showing end time. on Wed, 07 May 2025 15:32:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/engrag81" aria-label="Profile: EngrAg81">@<bdi>EngrAg81</bdi></a> Ok, I think this is what you would edit to change the way those numbers are displayed, ie, High/low temp.  This will be in the custom.css.</p>
<pre><code>CX3 .cellHeader .cellWeather .maxTemp {
  color: white;
  font-weight: bold;
  font-size: 90%;
}

.CX3 .cellHeader .cellWeather .minTemp {
  color: darkgray;
  font-weight: normal;
}

.CX3 .cellHeader .cellWeather .temperature {
  display: var(--displayWeatherTemp);
  padding-left: 5px;
  font-size: 90%;
}
 
.CX3 .cellHeader .cellWeather .maxTemp::before {
  content: " \25b2";  
}

.CX3 .cellHeader .cellWeather .minTemp::before {
  content: " \25bc";
}
 
.CX3 .cellHeader .cellWeather .temperature::after {
  content: "° ";
}

</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/126304</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/126304</guid><dc:creator><![CDATA[bobbylx]]></dc:creator><pubDate>Wed, 07 May 2025 15:32:56 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt3 shows both start and end time.  How to stop showing end time. on Wed, 07 May 2025 13:26:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/engrag81" aria-label="Profile: EngrAg81">@<bdi>EngrAg81</bdi></a>  I don’t have a lot of info on it, I did tweak my weather info but it’s been a couple years now.  The number is the High/Low forecast-ed temperature.   Have to turn on the default weather module in forecast mode, then I added this to config.js under MMM-calendarext3,</p>
<pre><code>    useWeather: true,
                            displayWeatherTemp: true,
                                      weatherPayload:(payload) =&gt; {
                                 if (Array.isArray(payload?.forecastArray)) {
                                   payload.forecastArray = payload.forecastArray.map((f) =&gt; {
                                     f.maxTemperature = Math.round(f.maxTemperature * 9 / 5 + 32)
                                     f.minTemperature = Math.round(f.minTemperature * 9 / 5 + 32)
                             return f

</code></pre>
<p dir="auto">I don’t remember what changes I made to get the degree symbol and up/down arrows.  I’ll post here if I can find those changes.<br />
<img src="/assets/uploads/files/1746624385650-screenshot_20250507_092215.png" alt="Screenshot_20250507_092215.png" class=" img-fluid img-markdown" width="620" height="191" /></p>
]]></description><link>https://forum.magicmirror.builders/post/126299</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/126299</guid><dc:creator><![CDATA[bobbylx]]></dc:creator><pubDate>Wed, 07 May 2025 13:26:33 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt3 shows both start and end time.  How to stop showing end time. on Tue, 06 May 2025 19:57:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/engrag81" aria-label="Profile: EngrAg81">@<bdi>EngrAg81</bdi></a> i do not, its just the module read file,<br />
shown on the github page</p>
]]></description><link>https://forum.magicmirror.builders/post/126288</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/126288</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 06 May 2025 19:57:48 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt3 shows both start and end time.  How to stop showing end time. on Tue, 06 May 2025 19:25:42 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><br />
It worked!  Thanks!</p>
<p dir="auto">Do you know if there a reference in that doc about the weather icon and 4 digit number after it?</p>
]]></description><link>https://forum.magicmirror.builders/post/126287</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/126287</guid><dc:creator><![CDATA[EngrAg81]]></dc:creator><pubDate>Tue, 06 May 2025 19:25:42 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt3 shows both start and end time.  How to stop showing end time. on Tue, 06 May 2025 19:13:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/engrag81" aria-label="Profile: EngrAg81">@<bdi>EngrAg81</bdi></a> use css</p>
<p dir="auto">from the doc<br />
<img src="/assets/uploads/files/1746558663054-img_1110.png" alt="IMG_1110.png" class=" img-fluid img-markdown" width="1290" height="2796" /></p>
<p dir="auto">in custom.css</p>
<pre><code class="language-css">.CX3 .event .endTime {
   display:none;
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/126282</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/126282</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 06 May 2025 19:13:37 GMT</pubDate></item></channel></rss>