Magento 1.9 ImportExport – Import Product Ratings

importimportexportmagento-1.9ratingsreview

Is it possible to import the star ratings in a CSV import on Magento?
I know I can import/export the reviews, but these exports do not include the star rating (Detailed Rating)

Can someone point me in the direction of a Data Profile that will allow for the import and export of reviews including the ratings please.

Best Answer

You can use this extension

http://www.magentocommerce.com/magento-connect/product-review-import-export.html

This extension allowed to import/export reviews and ratings in csv format from magento dataflow profile .

Or alternatively you can use this code to get ratings of review

 $ratingCollection = Mage::getModel('rating/rating_option_vote')
                    ->getResourceCollection()
                    ->setReviewFilter($review->getId()); // your review id

This will give you rating collection of review

Related Topic