[Fixed: Issue #2403 has been resovled.]

This commit is contained in:
Vivek Sharma 2020-02-08 17:28:42 +05:30
parent e78e61d989
commit 0e9af6b00a
2 changed files with 6 additions and 8 deletions

View File

@ -42,10 +42,12 @@
@include ('shop::products.price', ['product' => $product])
</div>
<div class="product-rating">
<star-ratings ratings="{{ $avgRatings }}"></star-ratings>
<span>{{ $totalReviews }} Ratings</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

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