How to disable customers to upload image at product review page while writing review?

I don’t want customers to upload image at product review page. How to disable it?

Which add-on are you using for handling product reviews? The “discussion” one or “product reviews” one?
There is no such setting in add-on configuration, but I think you could remove the image picker manually from the template.

Also you can add the following code to the CSS section of the Theme editor

.ty-product-review-new-product-review__media {
    display: none !important;
}
1 Like