Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vendrcontrib/vendr-reviews

Simple product reviews for Vendr, the eCommerce solution for Umbraco v8+
https://github.com/vendrcontrib/vendr-reviews

ecommerce hacktoberfest reviews umbraco umbraco-v8 vendr

Last synced: about 2 months ago
JSON representation

Simple product reviews for Vendr, the eCommerce solution for Umbraco v8+

Awesome Lists containing this project

README

        

# Vendr Reviews :star::star::star::star::star:

Simple product reviews for Vendr, the eCommerce package for Umbrao v8+

## Installation

Add the following using statement to your product page view:

````csharp
@using Vendr.Contrib.Reviews.Web;
````

Then in the location you wish to render the reviews add:

```csharp
@Html.RenderVendrReviews(store.Id, Model.Key.ToString())
```

## TODO

- [x] Add example of basic review form on product page.
- [x] Extract reviews for product and calculated average score.
- [x] Add tree nodes for each store in backoffice.
- [x] Add paged list of reviews in backoffice with filter options.
- [x] Search reviews in specific properties.
- [x] Add page to view and edit some properties on review.
- [x] Allow to delete review(s).
- [x] Allow to change status of review(s).
- [x] Reply/comment on review.
- [x] Change review UpdateDate on save.
- [x] Add email field to review.
- [x] Show product details like sku and product name on edit page.
- [x] Recommend this product (yes/no).
- [x] Verified buyer (yes/no).
- [ ] Votes positive / negative
- [ ] Add basic configuration (e.g. as config file).