Why does my cart icon show an empty bug on the Kontakt page?

Hi, when I’m on Kontakt page, I click cart icon and this bug appears, Home and Katalog pages are OK.

Hi @klikzmk ,

Please go to theme.liquid file and add code here:

Code:

{% if page.handle == 'contact' %}
      {{ 'component-card.css' | asset_url | stylesheet_tag }}
{% endif %}

Hope it helps!

That’s worked but I noticed the same issue is when I view the product also. I hope you can help.

Hi @klikzmk ,

Please change code:

{% if page.handle == 'contact' %}
      {{ 'component-card.css' | asset_url | stylesheet_tag }}
{% endif %}

=>

{{ 'component-card.css' | asset_url | stylesheet_tag }}

it will work fine

Worked :+1: Thank you very much.