Change header cart text to icon

How do I change the cart text to an icon on the Prestige theme? I want to only change the cart text to an icon and not anything else.

Hi, @Jarch2

Can you please share the store URL so I can better support you?

https://mk0uuf-h3.myshopify.com/

Hi, @Jarch2

Can you please send me your collaborator code? I will check it for you.

Theme > Edit code > header.liquid

Search for


And replace the code


  {%- unless section.settings.show_icons or use_sidebar_menu -%}
    
  {%- elsif localization_form != blank -%}
    
  {%- endunless -%}

  {%- if shop.customer_accounts_enabled and section.settings.show_icons or use_sidebar_menu -%}
    
      {%- render 'icon' with 'account' -%}
    
  {%- endif -%}

  
    {%- render 'icon' with 'search' -%}
    {%- render 'icon' with 'search-desktop' -%}
  

  
    {%- render 'icon' with 'cart' -%}
    {%- render 'icon' with 'cart-desktop' -%}
    
  

With the code


  

  
    {%- render 'icon' with 'cart' -%}
    {%- render 'icon' with 'cart-desktop' -%}