<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to fully disable (turn off) Magento module</title>
	<atom:link href="http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/feed/" rel="self" type="application/rss+xml" />
	<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/</link>
	<description>Magento Design and Magento Development Professionals - Inchoo</description>
	<lastBuildDate>Mon, 21 May 2012 08:29:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Eddie</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-28328</link>
		<dc:creator>Eddie</dc:creator>
		<pubDate>Fri, 20 Apr 2012 12:40:19 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-28328</guid>
		<description>The folks at Yireo have what seems to be a different take on the impact of &quot;Disable Module Output&quot; vs XML disable. See what they say at:
http://www.yireo.com/tutorials/magento/magento-administration/665-disabling-magento-modules</description>
		<content:encoded><![CDATA[<p>The folks at Yireo have what seems to be a different take on the impact of &#8220;Disable Module Output&#8221; vs XML disable. See what they say at:<br />
<a href="http://www.yireo.com/tutorials/magento/magento-administration/665-disabling-magento-modules" rel="nofollow">http://www.yireo.com/tutorials/magento/magento-administration/665-disabling-magento-modules</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: About</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-23026</link>
		<dc:creator>About</dc:creator>
		<pubDate>Sat, 08 Oct 2011 17:47:18 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-23026</guid>
		<description>oh man, thanks for this tip. Searched on google for about an hour till i found your post. 
Why is this not told in the backedn or saomewhere else.

thank you for sharing. 

the paid j2t discount label modul messed up a clients page and he was really depreceated. since we found your page and we could finally completely disable the module.</description>
		<content:encoded><![CDATA[<p>oh man, thanks for this tip. Searched on google for about an hour till i found your post.<br />
Why is this not told in the backedn or saomewhere else.</p>
<p>thank you for sharing. </p>
<p>the paid j2t discount label modul messed up a clients page and he was really depreceated. since we found your page and we could finally completely disable the module.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clay</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-22064</link>
		<dc:creator>Clay</dc:creator>
		<pubDate>Tue, 26 Jul 2011 15:12:18 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-22064</guid>
		<description>Is it possible to disable a module for a website or store view using this method? Please note, I am well aware of the enable/disable option in System &gt;&gt; Config &gt;&gt; Advanced, but I&#039;d like to know if it&#039;s possible to disable the module with the method described in this post.</description>
		<content:encoded><![CDATA[<p>Is it possible to disable a module for a website or store view using this method? Please note, I am well aware of the enable/disable option in System &gt;&gt; Config &gt;&gt; Advanced, but I&#8217;d like to know if it&#8217;s possible to disable the module with the method described in this post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sjolzy</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-13263</link>
		<dc:creator>sjolzy</dc:creator>
		<pubDate>Sat, 25 Dec 2010 07:09:40 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-13263</guid>
		<description>i have been studying on close the models as far as possible, but i can not make a decide</description>
		<content:encoded><![CDATA[<p>i have been studying on close the models as far as possible, but i can not make a decide</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Volly</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-9659</link>
		<dc:creator>Volly</dc:creator>
		<pubDate>Mon, 06 Dec 2010 14:39:44 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-9659</guid>
		<description>@Timo and @ Fernando
you can make a small code-extension in the module while magentos module deactivation dont work correkt
put:
[code]
if(!Mage::getStoreConfigFlag(&#039;advanced/modules_disable_output/Company_ModuleName&#039;)) {
    //my module code here
} else {
    //dont do anything (output disabled)
}
[/code]
works in Magento 1.4.1.1</description>
		<content:encoded><![CDATA[<p>@Timo and @ Fernando<br />
you can make a small code-extension in the module while magentos module deactivation dont work correkt<br />
put:</p>
<pre class="brush: plain; title: ; notranslate">
if(!Mage::getStoreConfigFlag('advanced/modules_disable_output/Company_ModuleName')) {
    //my module code here
} else {
    //dont do anything (output disabled)
}
</pre>
<p>works in Magento 1.4.1.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-6556</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Wed, 24 Mar 2010 09:44:08 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-6556</guid>
		<description>Hi - I have made a modification to the admin head.phtml (on a separate theme) which is controlled by a small module that sets the theme as active when enabled. the problem is that it keeps showing even after the module output is set to disabled. Obviously I don&#039;t want anyone to have to set false (like you mentioned here) - as It&#039;s a bit of an inconvenient to the end user. Could anyone share some knowledge on how to fix this?</description>
		<content:encoded><![CDATA[<p>Hi &#8211; I have made a modification to the admin head.phtml (on a separate theme) which is controlled by a small module that sets the theme as active when enabled. the problem is that it keeps showing even after the module output is set to disabled. Obviously I don&#8217;t want anyone to have to set false (like you mentioned here) &#8211; as It&#8217;s a bit of an inconvenient to the end user. Could anyone share some knowledge on how to fix this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fernando</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-3947</link>
		<dc:creator>Fernando</dc:creator>
		<pubDate>Tue, 24 Nov 2009 13:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-3947</guid>
		<description>@Timo, did you finally fix your problem? I have the same and i don&#039;t know how to do it</description>
		<content:encoded><![CDATA[<p>@Timo, did you finally fix your problem? I have the same and i don&#8217;t know how to do it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Snowcore</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-3789</link>
		<dc:creator>Snowcore</dc:creator>
		<pubDate>Wed, 18 Nov 2009 12:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-3789</guid>
		<description>What about disabling core modules? E.g. how can I disable Google Base module from my Admin?</description>
		<content:encoded><![CDATA[<p>What about disabling core modules? E.g. how can I disable Google Base module from my Admin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Itos</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-3644</link>
		<dc:creator>Itos</dc:creator>
		<pubDate>Tue, 27 Oct 2009 07:15:30 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-3644</guid>
		<description>hi,
for method containing observer tasks, I covered it with this condition:

if(!Mage::getStoreConfigFlag(&#039;myCompany/modulename&#039;)) {
    //codes here
}

what this condition does is, returns status of the module as its disabled in admin or not. 
If its disable then my codes won&#039;t get executed so I archive total disabled status of my module.</description>
		<content:encoded><![CDATA[<p>hi,<br />
for method containing observer tasks, I covered it with this condition:</p>
<p>if(!Mage::getStoreConfigFlag(&#8216;myCompany/modulename&#8217;)) {<br />
    //codes here<br />
}</p>
<p>what this condition does is, returns status of the module as its disabled in admin or not.<br />
If its disable then my codes won&#8217;t get executed so I archive total disabled status of my module.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Timo Körber</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-2864</link>
		<dc:creator>Timo Körber</dc:creator>
		<pubDate>Tue, 21 Jul 2009 16:36:18 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-2864</guid>
		<description>do you have a solution to fully disable a Module just for a specific Website, Store or View? It&#039;s a Problem I&#039;ve been having for a while. An just disabling the output doesn&#039;t do the trick.</description>
		<content:encoded><![CDATA[<p>do you have a solution to fully disable a Module just for a specific Website, Store or View? It&#8217;s a Problem I&#8217;ve been having for a while. An just disabling the output doesn&#8217;t do the trick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan Weiler</title>
		<link>http://inchoo.net/ecommerce/magento/how-to-fully-disable-turn-off-magento-module/comment-page-1/#comment-1864</link>
		<dc:creator>Ivan Weiler</dc:creator>
		<pubDate>Wed, 20 May 2009 00:36:02 +0000</pubDate>
		<guid isPermaLink="false">http://inchoo.net/?p=1504#comment-1864</guid>
		<description>Also remember to disable System-&gt;Cache Management-&gt;Configuration cache.</description>
		<content:encoded><![CDATA[<p>Also remember to disable System->Cache Management->Configuration cache.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

