issue Product Page is not opening, Flash message is not showing properly in cart page. fixed

This commit is contained in:
prateek srivastava 2020-01-20 12:37:20 +05:30
parent 5055c6c6a0
commit 4bef67fd7f
2 changed files with 9 additions and 6 deletions

View File

@ -1253,7 +1253,7 @@
.main-container-wrapper {
.sticky-header {
top: 0px;
z-index: 1100;
z-index: 100;
position: sticky;
background: white;

View File

@ -134,11 +134,14 @@
</section>
<div class="store-meta-images col-3">
@foreach (json_decode($velocityMetaData['product_view_images'], true) as $image)
@if ($image && $image !== '')
<img src="{{ url()->to('/') }}/storage/{{ $image }}" />
@endif
@endforeach
@isset($velocityMetaData['product_view_images'])
@foreach (json_decode($velocityMetaData['product_view_images'], true) as $image)
@if ($image && $image !== '')
<img src="{{ url()->to('/') }}/storage/{{ $image }}" />
@endif
@endforeach
@endisset
</div>
</div>