issue Product Page is not opening, Flash message is not showing properly in cart page. fixed
This commit is contained in:
parent
5055c6c6a0
commit
4bef67fd7f
|
|
@ -1253,7 +1253,7 @@
|
|||
.main-container-wrapper {
|
||||
.sticky-header {
|
||||
top: 0px;
|
||||
z-index: 1100;
|
||||
z-index: 100;
|
||||
position: sticky;
|
||||
background: white;
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue