My site is bisaddle.com The shopping cart icon is missing the number. I believe this is connected to removing the bold options app from the site.
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Hi @bisaddle ,
Please send me the code of header.liquid file, I will check it.
{% if section.settings.message %}
{% if section.settings.logo != blank %} .site-header__logo-image { max-width: {{ section.settings.logo_max_width | escape }}px; } {% endif %} {% if section.settings.align_logo == 'left' %} .site-header__logo-image { margin: 0; } {% endif %}{% endif %}
.announcement-bar–link:hover {
{% assign brightness = section.settings.color_bg | color_brightness %}
{% if brightness <= 192 %}
{% assign lightenAmount = 255 | minus: brightness | divided_by: 255 | times: 16 %}
background-color: {{ section.settings.color_bg | color_lighten: lightenAmount }};
{% else %}
{% assign darkenAmount = 255 | divided_by: brightness | times: 8 %}
background-color: {{ section.settings.color_bg | color_darken: darkenAmount }};
{% endif %}
}
.announcement-bar__message {
color: {{ section.settings.color_text }};
}
{% if section.settings.message_link == blank %}
{% else %} {% endif %}{% endif %}
{% endif %}
{% else %}
{% endif %}
{% if section.settings.logo %}
{%- assign img_url = section.settings.logo | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}
{% capture logo_alt %}{{ section.settings.logo.alt | default: shop.name }}{% endcapture %}
{% capture image_size %}{{ section.settings.logo_max_width | escape }}x{% endcapture %}
{% else %}
{{ shop.name }}
{% endif %}
{% if template.name == 'index' %}
{% else %}
{% if section.settings.align_logo == ‘left’ %}
{% include 'site-nav' %} {% endif %}{% if shop.customer_accounts_enabled %}
{% if customer %}
{% include ‘icon-login’ %}
{{ ‘layout.customer.account’ | t }}
{% else %}
{% include ‘icon-login’ %}
{{ ‘layout.customer.log_in’ | t }}
{% endif %}
{% endif %}
{% include ‘icon-cart’ %}
{{ ‘layout.cart.title’ | t }}
{% if cart.item_count > 0 %}
{% unless linklists[section.settings.main_linklist] == blank %}
{% include ‘icon-hamburger’ %}
{% include ‘icon-close’ %}
{% endunless %}
-
{% for link in linklists[section.settings.main_linklist].links %}
{%- assign outerLoopIndex = forloop.index -%}
-
{% if link.links != blank %}
{% capture child_list_handle %}{{ link.handle }}-{{ outerLoopIndex }}{% endcapture %}
{{ link.title }}
{% include 'icon-chevron-right' %}
- {{- link.title }} {{ 'layout.navigation.menu' | t -}}
-
{% include 'icon-chevron-left' %}{{ link.title }}
-
{% if childlink.links != blank %}
{% capture grandchild_list_handle %}{{ childlink.handle }}-{{ outerLoopIndex }}-{{ forloop.index }}{% endcapture %}
{{ childlink.title }}
{% include 'icon-chevron-right' %}
- {{- childlink.title }} {{ 'layout.navigation.menu' | t -}}
- {% for grandchildlink in childlink.links %}
- {{ grandchildlink.title | escape }} {% endfor %}
{% endfor %}
{% for childlink in link.links %}
{% endfor %}
{% if shop.enabled_currencies.size > 1 %}
-
{% form 'currency', class: "currency-selector" %}
{{ 'general.currency.dropdown_label' | t }}
{% include 'icon-chevron-down' %}{% endform %}
{% endif %}
{% if section.settings.align_logo == ‘center’ %}
{% include 'site-nav', nav_alignment: 'site-nav--centered' %} {% endif %}{% if template.name == ‘index’ %}
{% endif %}
{% schema %}
{
“name”: {
“de”: “Titel”,
“en”: “Header”,
“es”: “Encabezado”,
“fr”: “En-tête”,
“it”: “Header”,
“ja”: “ヘッダー”,
“pt-BR”: “Cabeçalho”
},
“settings”: [
{
“type”: “radio”,
“id”: “align_logo”,
“label”: {
“de”: “Logo-Ausrichtung”,
“en”: “Logo alignment”,
“es”: “Alineación de logotipo”,
“fr”: “Alignement du logo”,
“it”: “Allineamento logo”,
“ja”: “ロゴアラインメント”,
“pt-BR”: “Alinhamento do logotipo”
},
“default”: “left”,
“options”: [
{
“value”: “left”,
“label”: {
“de”: “Links”,
“en”: “Left”,
“es”: “Izquierda”,
“fr”: “Gauche”,
“it”: “Sinistra”,
“ja”: “左”,
“pt-BR”: “Esquerda”
}
},
{
“value”: “center”,
“label”: {
“de”: “Mittig”,
“en”: “Centered”,
“es”: “Centrada”,
“fr”: “Centré”,
“it”: “Centrato”,
“ja”: “中央揃え”,
“pt-BR”: “Centralizado”
}
}
]
},
{
“type”: “image_picker”,
“id”: “logo”,
“label”: {
“de”: “Logo-Foto”,
“en”: “Logo image”,
“es”: “Logotipo”,
“fr”: “Image du logo”,
“it”: “Immagine del logo”,
“ja”: “ロゴ画像”,
“pt-BR”: “Imagem do logotipo”
}
},
{
“type”: “range”,
“id”: “logo_max_width”,
“label”: {
“de”: “Logobreite”,
“en”: “Custom logo width”,
“es”: “Ancho del logotipo personalizado”,
“fr”: “Largeur personnalisée du logo”,
“it”: “Larghezza logo personalizzato”,
“ja”: “ロゴの幅をカスタムする”,
“pt-BR”: “Largura do logotipo personalizado”
},
“min”: 50,
“max”: 250,
“step”: 5,
“unit”: {
“de”: “px”,
“en”: “px”,
“es”: “px”,
“fr”: “px”,
“it”: “px”,
“ja”: “px”,
“pt-BR”: “px”
},
“default”: 100
},
{
“type”: “link_list”,
“id”: “main_linklist”,
“label”: {
“de”: “Menü”,
“en”: “Menu”,
“es”: “Menú”,
“fr”: “Menu”,
“it”: “Menu”,
“ja”: “メニュー”,
“pt-BR”: “Menu”
},
“default”: “main-menu”
},
{
“type”: “header”,
“content”: {
“de”: “Ankündigungsbereich”,
“en”: “Announcement bar”,
“es”: “Barra de anuncios”,
“fr”: “Barre d’annonces”,
“it”: “Barra degli annunci”,
“ja”: “告知バー”,
“pt-BR”: “Barra de anúncios”
}
},
{
“type”: “checkbox”,
“id”: “message”,
“label”: {
“de”: “Ankündigung anzeigen”,
“en”: “Show announcement”,
“es”: “Mostrar anuncio”,
“fr”: “Afficher l’annonce”,
“it”: “Mostra annuncio”,
“ja”: “告知を表示する”,
“pt-BR”: “Exibir anúncio”
},
“default”: false
},
{
“type”: “checkbox”,
“id”: “home_page_only”,
“label”: {
“de”: “Nur Startseite”,
“en”: “Home page only”,
“es”: “Solo página de inicio”,
“fr”: “Page d’accueil uniquement”,
“it”: “Solo home page”,
“ja”: “ホームページのみ”,
“pt-BR”: “Apenas página inicial”
},
“default”: true
},
{
“type”: “text”,
“id”: “message_text”,
“label”: {
“de”: “Text”,
“en”: “Text”,
“es”: “Texto”,
“fr”: “Texte”,
“it”: “Testo”,
“ja”: “テキスト”,
“pt-BR”: “Texto”
},
“default”: {
“de”: “Hier etwas ankündigen”,
“en”: “Announce something here”,
“es”: “Anuncia algo aquí”,
“fr”: “Annoncez quelque chose ici”,
“it”: “Annuncia qualcosa qui”,
“ja”: “ここで告知してください”,
“pt-BR”: “Anuncie algo aqui”
}
},
{
“type”: “url”,
“id”: “message_link”,
“label”: {
“de”: “Link”,
“en”: “Link”,
“es”: “Enlace”,
“fr”: “Lien”,
“it”: “Link”,
“ja”: “リンク”,
“pt-BR”: “Link”
},
“info”: {
“de”: “Optional”,
“en”: “Optional”,
“es”: “Opcional”,
“fr”: “Facultatif”,
“it”: “Facoltativo”,
“ja”: “選択させる”,
“pt-BR”: “Opcional”
}
},
{
“type”: “color”,