how do i get rid of product review

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
9 years ago
I think you have to disable it product by product.
9 years ago
it's a pain, but by hand or by sql it must be for those already afflicted  ...

To uncheck the allow reviews checkbox by default, go to

Administration\Views\Product\Create.cshtml

and add the line :
@model ProductModel
@{
    //page title
    ViewBag.Title = T("Admin.Catalog.Products.AddNew").Text;

    Model.AllowCustomerReviews = false;
        
}


vote for an out of the box setting here

.
9 years ago
a.m. wrote:
Go to product details page (admin area) and ensure that 'Allow customer ratings' is unchecked



Hello sir I am using Nop 3.10 Version

I want  show   ProductReviews using this
line @Html.Action("ProductReviews", "Catalog", new { productId = Model.Id })

but throwing error like   Redirect Results not allowed in Child Actions in
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.