Reputation: 73
Does anyone have any idea how i can disable global messages on magento 1.12??
I can't make them work the way I want so I would rather disable them until I can make them work right.
Upvotes: 0
Views: 1740
Reputation: 3887
I suggest you to remove them from layout. You need to put into any layout xml file the following code
<default>
<remove name="global_messages" />
<remove name="messages" />
</default>
Upvotes: 2