I'm running a multi-site installation of Magento. Many of the products are on more than one site.
I would like to show the product reviews on multiple sites.
I know I can manually go into each Product Review and edit the 'visible in' section - however, I've got 200 reviews and this will take a very long time.
Is there a way (or a plugin) to change the 'visible in' section of Product Reviews in bulk, in the same way you can 'Update Attributes' for products on the product grid?
Hi @Avanor
Hooking into reviews saving is a pretty easy process. You can use Magento's observer parttern to do this. The event i would pick would properly be:
review_save_before
You can change the stores values to include all the stores you need and if you don't want to.
I hope this helps :-)
Thanks. I'm pretty new to Magento.
Can you give me more information about using the observer pattern?