What's your biggest current challenge? Have your say in Community Polls along the right column.

Re: Remove shopping cart icon

Solved

Remove shopping cart icon

themaxwolf
Visitor
2 0 0

Hi i am trying to remove the shopping cart/ bag icon from my site https://linkfuneralfunding.com/ but can not find the code to remove

Accepted Solution (1)

Moeed
Shopify Partner
6339 1720 2076

This is an accepted solution.

Hey @themaxwolf 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
a.navlink.navlink--icon.cart__toggle.cart__toggle--animation.caps.navlink--dot {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1730395879669.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


View solution in original post

Replies 2 (2)

Moeed
Shopify Partner
6339 1720 2076

This is an accepted solution.

Hey @themaxwolf 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
a.navlink.navlink--icon.cart__toggle.cart__toggle--animation.caps.navlink--dot {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1730395879669.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


themaxwolf
Visitor
2 0 0

thank you! fixed