jcmeghan
jcmeghan

Reputation: 73

I want to disable global messages on magento

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

Answers (1)

Jaro
Jaro

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

Related Questions