<?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[Removing modules]]></title><description><![CDATA[<p dir="auto">Hello, i am very new to programming so i apologize in advance for asking repetitive/ dumb questions. I am wanting to remove the " US Holidays module from the screen but i am not exactly sure how to do it. Could someone please explain in detail how it can be done. I tried to delete the module in the config.js file but it seems to just blank the whole screen. Thanks for your help.</p>
]]></description><link>https://forum.magicmirror.builders/topic/802/removing-modules</link><generator>RSS for Node</generator><lastBuildDate>Thu, 11 Jun 2026 22:21:37 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/802.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 13 Oct 2016 15:27:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Removing modules on Thu, 13 Oct 2016 15:51:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/killerwaffles" aria-label="Profile: killerwaffles">@<bdi>killerwaffles</bdi></a> If you were talking about the header not the calendar it self <code>header: 'US Holidays',</code> you could just change this part here. to say something like <code>header: 'Events,</code></p>
]]></description><link>https://forum.magicmirror.builders/post/6234</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6234</guid><dc:creator><![CDATA[andrewchumchal]]></dc:creator><pubDate>Thu, 13 Oct 2016 15:51:37 GMT</pubDate></item><item><title><![CDATA[Reply to Removing modules on Thu, 13 Oct 2016 15:51:35 GMT]]></title><description><![CDATA[<p dir="auto">I actually tried that originally but the main MagicMirror screen popped up and it says “Please create a config file” which was a bit confusing.</p>
]]></description><link>https://forum.magicmirror.builders/post/6233</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6233</guid><dc:creator><![CDATA[killerwaffles]]></dc:creator><pubDate>Thu, 13 Oct 2016 15:51:35 GMT</pubDate></item><item><title><![CDATA[Reply to Removing modules on Thu, 13 Oct 2016 15:49:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/killerwaffles" aria-label="Profile: killerwaffles">@<bdi>killerwaffles</bdi></a><br />
You are welcome.<br />
You could as well remove all lines of code you just commented out with //</p>
]]></description><link>https://forum.magicmirror.builders/post/6232</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6232</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Thu, 13 Oct 2016 15:49:52 GMT</pubDate></item><item><title><![CDATA[Reply to Removing modules on Thu, 13 Oct 2016 15:47:25 GMT]]></title><description><![CDATA[<p dir="auto">When i tried to just remove those lines of code, the “US Holiday” text still showed but it removed everything else. Using the // in front of the module completely removed it from the screen. Thank you all for your help.</p>
]]></description><link>https://forum.magicmirror.builders/post/6231</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6231</guid><dc:creator><![CDATA[killerwaffles]]></dc:creator><pubDate>Thu, 13 Oct 2016 15:47:25 GMT</pubDate></item><item><title><![CDATA[Reply to Removing modules on Thu, 13 Oct 2016 15:37:19 GMT]]></title><description><![CDATA[<p dir="auto">You need to remove or comment the whole block of the module. In your case I marked all lines with //<br />
Otherwise parsing of the config file will fail because of missing brackets or commas</p>
<pre><code>/* Magic Mirror Config Sample
 *
 * By Michael Teeuw http://michaelteeuw.nl
 * MIT Licensed.
 */

var config = {
	port: 8080,

	language: 'en',
	timeFormat: 24,
	units: 'metric',

	modules: [
		{
			module: 'alert',
		},
		{
			module: 'clock',
			position: 'top_left'
		},
//		{
//			module: 'calendar',
//			header: 'US Holidays',
//			position: 'top_left',
//			config: {
//				calendars: [
//					{
//						symbol: 'calendar-check-o ',
//						url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
//					}
//				]
//			}
//		},
		{
			module: 'compliments',
			position: 'lower_third'
		},
		{
			module: 'currentweather',
			position: 'top_right',
			config: {
				location: 'New York',
				locationID: '',  //ID from http://www.openweathermap.org
				appid: 'YOUR_OPENWEATHER_API_KEY'
			}
		},
		{
			module: 'weatherforecast',
			position: 'top_right',
			header: 'Weather Forecast',
			config: {
				location: 'New York',
				locationID: '5128581',  //ID from http://www.openweathermap.org
				appid: 'YOUR_OPENWEATHER_API_KEY'
			}
		},
		{
			module: 'newsfeed',
			position: 'bottom_bar',
			config: {
				feeds: [
					{
						title: "New York Times",
						url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
					}
				],
				showSourceTitle: true,
				showPublishDate: true
			}
		},
	]

};

/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== 'undefined') {module.exports = config;}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/6229</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6229</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Thu, 13 Oct 2016 15:37:19 GMT</pubDate></item><item><title><![CDATA[Reply to Removing modules on Thu, 13 Oct 2016 15:34:14 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/user/killerwaffles" aria-label="Profile: killerwaffles">@<bdi>killerwaffles</bdi></a></p>
<p dir="auto">I will be glad to help you. If you look in your config file for this section</p>
<pre><code>		{
			module: 'calendar',
			header: 'US Holidays',
			position: 'top_left',
			config: {
				calendars: [
					{
						symbol: 'calendar-check-o ',
                                                url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
					}
				]
			}
		},
</code></pre>
<p dir="auto">All you have to do is to remove these lines of code</p>
<pre><code>					{
						symbol: 'calendar-check-o ',
						url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics'
					}
</code></pre>
<p dir="auto">That should get ride of the us holidays calendar.</p>
]]></description><link>https://forum.magicmirror.builders/post/6228</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/6228</guid><dc:creator><![CDATA[andrewchumchal]]></dc:creator><pubDate>Thu, 13 Oct 2016 15:34:14 GMT</pubDate></item></channel></rss>