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: 8 months ago 
        JSON representation
    
Simple product reviews for Vendr, the eCommerce solution for Umbraco v8+
- Host: GitHub
 - URL: https://github.com/vendrcontrib/vendr-reviews
 - Owner: vendrcontrib
 - License: mit
 - Created: 2020-09-17T16:35:22.000Z (about 5 years ago)
 - Default Branch: v2/dev
 - Last Pushed: 2022-10-17T15:26:12.000Z (about 3 years ago)
 - Last Synced: 2024-10-24T00:24:40.874Z (about 1 year ago)
 - Topics: ecommerce, hacktoberfest, reviews, umbraco, umbraco-v8, vendr
 - Language: C#
 - Homepage:
 - Size: 11.3 MB
 - Stars: 2
 - Watchers: 3
 - Forks: 3
 - Open Issues: 2
 - 
            Metadata Files:
            
- Readme: README.md
 - License: LICENSE.md
 
 
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).