Magento – Magento 2 : How to get success/error message after review post

magento2messagesreview

When I submit review form its properly redirect back on same page and review is properly saved in admin but there is no success message.

How do I show the success message on that page and where I can set that message ?

Best Answer

Take a look: vendor/magento/module-review/Controller/Product/Post.php

public function execute()
 {
   ......
   $this->messageManager->addSuccess(__('You submitted your review for moderation.'));
   ......
 }

When we want to set this message, we have two options:
+We can use translation.
+We can override this class.

Note: the global message may store in local storage