<?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-Pages]]></title><description><![CDATA[<p dir="auto">Tried searching here and couldn’t find anyone with a similar issue. I am trying to get a specific module, MMM-MyCommute, to display only on page 1 of of my MagicMirror. No matter what I do it displays on page 0 as well. I’ve attached my code below. Any insight would be greatly appreciated</p>
<pre><code>{
        module: "MMM-pages",
        config: {
            timings: {
                default: 0,               // rotate every 5 seconds   
                0: 0,                     // page 0 rotates every 20 seconds
                1: 20000,
            },
            modules: [
               ["MMM-CalendarExt3"],                // page 0
               ["MMM-MyCommute"],                   // page 1
            ],
            fixed: [                         // modules that are always shown
                "clock",
                "MMM-OneCallWeather",
                "MMM-page-indicator"
            ],       
            }
        }    
  ]
};
module.exports = config;
</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/19753/mmm-pages</link><generator>RSS for Node</generator><lastBuildDate>Mon, 11 May 2026 14:50:05 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/19753.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 02 Jul 2025 04:19:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-Pages on Wed, 02 Jul 2025 11:23:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mrpinner141" aria-label="Profile: MrPinner141">@<bdi>MrPinner141</bdi></a> said in <a href="/post/127173">MMM-Pages</a>:</p>
<blockquote>
<pre><code>        timings: {
            default: 0,               // rotate every 5 seconds   
            0: 0,                     // page 0 rotates every 20 seconds
            1: 20000,
        },
</code></pre>
</blockquote>
<p dir="auto">To understand your setting better:</p>
<ul>
<li>What do you want to achieve with 0 ms for <code>0</code> and <code>default</code>?</li>
<li>Does the behavior also occur if you enter values above 0 at <code>0</code> and <code>default</code>?</li>
</ul>
]]></description><link>https://forum.magicmirror.builders/post/127174</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127174</guid><dc:creator><![CDATA[KristjanESPERANTO]]></dc:creator><pubDate>Wed, 02 Jul 2025 11:23:11 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Pages on Fri, 04 Jul 2025 00:00:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mrpinner141" aria-label="Profile: MrPinner141">@<bdi>MrPinner141</bdi></a> why don’t you use the Homepage feature?</p>
]]></description><link>https://forum.magicmirror.builders/post/127240</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127240</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 04 Jul 2025 00:00:43 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Pages on Thu, 03 Jul 2025 22:15:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mrpinner141" aria-label="Profile: MrPinner141">@<bdi>MrPinner141</bdi></a> I can’t take a closer look at it right now, but I have an idea for a workaround: But it only works if MM restarts regularly. Some users shut MM down at night and start it up again in the morning. Then you could set the timer for the homepage to over 24 hours, this should have the desired effect that the homepage is always visible.</p>
]]></description><link>https://forum.magicmirror.builders/post/127239</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127239</guid><dc:creator><![CDATA[KristjanESPERANTO]]></dc:creator><pubDate>Thu, 03 Jul 2025 22:15:07 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Pages on Thu, 03 Jul 2025 01:37:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kristjanesperanto" aria-label="Profile: KristjanESPERANTO">@<bdi>KristjanESPERANTO</bdi></a></p>
<p dir="auto">Thanks for the advice, when I did increase the value above 0 it does function as intended! Thank you.</p>
<p dir="auto">I kept it at 0 so that I essentially would have a “homepage” and click the another page’s button, from MMM-page-indicator, to go there and after a short amount of time it comes back to the “homepage”</p>
<p dir="auto">I’m sure I can find another work around to achieve that, but if you have any advice that would be great!</p>
]]></description><link>https://forum.magicmirror.builders/post/127200</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127200</guid><dc:creator><![CDATA[MrPinner141]]></dc:creator><pubDate>Thu, 03 Jul 2025 01:37:49 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Pages on Wed, 02 Jul 2025 11:23:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mrpinner141" aria-label="Profile: MrPinner141">@<bdi>MrPinner141</bdi></a> said in <a href="/post/127173">MMM-Pages</a>:</p>
<blockquote>
<pre><code>        timings: {
            default: 0,               // rotate every 5 seconds   
            0: 0,                     // page 0 rotates every 20 seconds
            1: 20000,
        },
</code></pre>
</blockquote>
<p dir="auto">To understand your setting better:</p>
<ul>
<li>What do you want to achieve with 0 ms for <code>0</code> and <code>default</code>?</li>
<li>Does the behavior also occur if you enter values above 0 at <code>0</code> and <code>default</code>?</li>
</ul>
]]></description><link>https://forum.magicmirror.builders/post/127174</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/127174</guid><dc:creator><![CDATA[KristjanESPERANTO]]></dc:creator><pubDate>Wed, 02 Jul 2025 11:23:11 GMT</pubDate></item></channel></rss>