I am using Woocommerce and I have to show a message after submitting the review on the product.
wc_add_notice(‘Thank you for submitting the review. Your review is awaiting approval.’);
Any idea how to display messages after submitting review?
I am using Woocommerce and I have to show a message after submitting the review on the product.
wc_add_notice(‘Thank you for submitting the review. Your review is awaiting approval.’);
Any idea how to display messages after submitting review?
2
Answers
You can use
comment_post_redirect
filter hook and inside that hook you can usewc_add_notice
function. check below code. code will go in your active themefunctions.php
file.Tested and works.
You can use
comment_post
action hook. you need to check the comment belongs to aproduct
and the comment type isreview
or it will be applied to all comments in all post types.