Remove display message twice in magento

Try this in your template file
<?php Mage::app()->getLayout()->getMessagesBlock()->setMessages(Mage::getSingleton(‘review/session’)->getMessages(true)); ?>
<?php echo Mage::app()->getLayout()->getMessagesBlock()->getGroupedHtml(); ?>

Leave a comment