I want to delete the "wishlist" remaining in the header. Theme: Minimal

I deleted the APP, but the word “wishlist” remained in the header.

Please tell me how to erase it.
I use a “Minimal” theme.

artmina.com
I found this at the page view source, but I don’t know where it is in the Edit code.

Wishlist

Hi @LuckyMinaBall ,

For your request I have to check the theme code which take some time to find the code and delete it.

I’ll share the some other simple way to hide that word from the header.

Please add the below line of code at the end of your theme.scss file. which you can find at asset folder of your theme.

.header-bar .swym-wishlist{
display:none !important;
}

Hello @LuckyMinaBall !
Please add the below code in theme.scss.css theme file at the bottom to remove the wishlist:

a.swym-wishlist {
    display: none !important;
}

Hope this will help you out.

Thank you so much!

It has disappeared!

It disappeared in the way of the first respondent.

Thank you for filling in the answer!