mini cart configurable options displaying all in bold now converted back to normal

This commit is contained in:
prashant-webkul 2018-11-29 13:29:38 +05:30
parent b2161571bd
commit 5de07d1b35
3 changed files with 10 additions and 4 deletions

View File

@ -938,7 +938,6 @@ section.slider-block {
.item-details .item-options {
font-size: 16px;
font-weight: bold;
margin-bottom: 8px;
}

View File

@ -25,6 +25,13 @@ return [
'search-text' => 'Search products here'
],
'minicart' => [
'view-cart' => 'View Shopping Cart',
'checkout' => 'Checkout',
'cart' => 'Cart',
'zero' => '0'
],
'footer' => [
'subscribe-newsletter' => 'Subscribe Newsletter',
'subscribe' => 'Subscribe',

View File

@ -62,9 +62,9 @@
</div>
<div class="dropdown-footer">
<a href="{{ route('shop.checkout.cart.index') }}">View Shopping Cart</a>
<a href="{{ route('shop.checkout.cart.index') }}">{{ __('shop::app.minicart.view-cart') }}</a>
<a class="btn btn-primary btn-lg" style="color: white;" href="{{ route('shop.checkout.onepage.index') }}">CHECKOUT</a>
<a class="btn btn-primary btn-lg" style="color: white;" href="{{ route('shop.checkout.onepage.index') }}">{{ __('shop::app.minicart.checkout') }}</a>
</div>
</div>
</div>
@ -75,7 +75,7 @@
<div class="dropdown-toggle">
<div style="display: inline-block; cursor: pointer;">
<span class="name">Cart<span class="count"> (0) </span></span>
<span class="name">{{ __('shop::app.minicart.cart') }}<span class="count"> ({{ __('shop::app.minicart.zero') }}) </span></span>
</div>
</div>
@endif