精彩推荐

Magento remove reviews and ratings of products

1334人阅读  0人回复   查看全部 | 阅读模式 | 复制链接   

2

主题

2

帖子

8

积分

新手上路

Rank: 1

积分
8
发表于 2015-4-23 23:12:45
分享到:
Magento don’t provide admin screen where store owner can delete all the reviews and ratings of the products. The easiest way to delete them is using raw SQL queries, which you can run in Mysql console or in PhpMyAdmin. Remove/delete all the reviews and ratings of products in Magento using simple SQL queries given below.


truncate table `rating_option_vote`;
truncate table `rating_option_vote_aggregated`;
truncate table `review`;
truncate table `review_detail`;
truncate table `review_entity_summary`;
truncate table `review_store`;

回复

使用道具 举报

快速回复 返回顶部 返回列表