Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 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 (over 4 years ago)
- Default Branch: v2/dev
- Last Pushed: 2022-10-17T15:26:12.000Z (about 2 years ago)
- Last Synced: 2024-07-30T20:58:01.914Z (5 months 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).