Anastasiya96
Постоялец
- Регистрация
- 14 Мар 2018
- Сообщения
- 137
- Реакции
- 142
- Автор темы
- #1
подскажите пожалуйста,как сделать в иконке корзины маленький кружочек, в котором бы отображалось количество товаров в корзине? опенкарт 2.3
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<span id="cart-total"><?php echo $text_items; ?></span>
#cart-total {
border-radius: 100%;
padding:5px;
color:#ffffff;
background-color: #000000;
}
у меня почему то нет. это для мобильной версии подойдёт?Так это же есть в дефолтном шаблоне есть же
$data['language'] = $this->load->controller('common/language');
$data['currency'] = $this->load->controller('common/currency');
$data['search'] = $this->load->controller('common/search');
$data['cart'] = $this->load->controller('common/cart');
$data['cart_item_total']=$this->cart->countProducts();
setTimeout(function () {
$('#cart > button').html('<span id="cart-total"><i class="fa fa-shopping-cart"></i> ' + json['total'] + '</span>');
}, 100);
setTimeout(function () {
$('#cart-total').html(json['total_items']);
$('#cart > button').html('<span id="cart-total"><i class="fa fa-shopping-cart"></i> ' + json['total'] + '</span>');
}, 100);
<li><a href="<?php echo $shopping_cart; ?>" title="<?php echo $text_shopping_cart; ?>"><i class="fa fa-shopping-cart"></i><span class="hidden-xs hidden-sm hidden-md"><?php echo $text_shopping_cart; ?></span></a></li>
<li><a href="<?php echo $shopping_cart; ?>" title="<?php echo $text_shopping_cart; ?>"><i class="fa fa-shopping-cart"></i><span class="visible-xs cart_item_total" id="cart-total"><?php echo $cart_item_total; ?></span><span class="hidden-xs hidden-sm hidden-md"><?php echo $text_shopping_cart; ?></span></a></li>
setTimeout(function () {
$('#cart > button').html('<span id="cart-total"><i class="fa fa-shopping-cart"></i> ' + json['total'] + '</span>');
}, 100);
$('#cart-total').html(json['total_items']);
вот так сделать?Найдите три строки