Merge pull request #2406 from vivek-webkul/patch-24

[Fixed: Issue #2403 has been resolved.]
This commit is contained in:
Jitendra Singh 2020-02-11 12:35:03 +05:30 committed by GitHub
commit 0c054e2ef6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 8 deletions

View File

@ -50,10 +50,12 @@
@include ('shop::products.price', ['product' => $product])
</div>
<div class="product-rating">
<star-ratings ratings="{{ $avgRatings }}"></star-ratings>
<span>{{ __('velocity::app.products.ratings', ['totalRatings' => $totalReviews ]) }}</span>
</div>
@if( $totalReviews )
<div class="product-rating">
<star-ratings ratings="{{ $avgRatings }}"></star-ratings>
<span>{{ $totalReviews }} Ratings</span>
</div>
@endif
<div class="cart-wish-wrap mt5">
@include ('shop::products.add-to-cart', [

View File

@ -160,10 +160,6 @@
methods: {
toggleLayeredNavigation: function ({event, actionType}) {
// this.$root.navContainer = true;
// this.$root.responsiveSidebarTemplate = `<div slot="sidebar-body">
// Hello World
// </div>`;
this.layeredNavigation = !this.layeredNavigation;
}
}