How to remove "continue shopping" button from cart?

Solved

How to remove "continue shopping" button from cart?

paczola
Tourist
4 0 2

I tried codes I've found here but they did not work for me. I would like to remove the continue shopping button from the cart. Please somebody help. Theme sense. 

Accepted Solutions (2)

BSSCommerce-HDL
Shopify Partner
2305 835 908

This is an accepted solution.

Hi @paczola
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

BSSCommerceHDL_0-1717846077101.png

 

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

BSSCommerceHDL_1-1717846081169.png

 

Step 3: Insert the below code at the bottom of the file -> Save

body:has(#cart) a[href='/collections/all'].button {
  display: none !important;
} 

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

BSSCommerce-HDL
Shopify Partner
2305 835 908

This is an accepted solution.

Hi @paczola, Pls insert this code to your file css: 

body:has(#cart) a[href='/collections/all'] {
  display: none !important;
} 

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

Replies 6 (6)

BSSCommerce-HDL
Shopify Partner
2305 835 908

This is an accepted solution.

Hi @paczola
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

BSSCommerceHDL_0-1717846077101.png

 

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

BSSCommerceHDL_1-1717846081169.png

 

Step 3: Insert the below code at the bottom of the file -> Save

body:has(#cart) a[href='/collections/all'].button {
  display: none !important;
} 

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

paczola
Tourist
4 0 2

Thank you. It worked! I have one more question: Do you know how to remove the link 'continue shopping' that shows in cart when products are in the cart? When I click on it, it takes me to an empty page.  I would like to remove it or at least link it to page where my products are listed. 

BSSCommerce-HDL
Shopify Partner
2305 835 908

Hi @paczola, What do you mean you want to delete this?

BSSCommerceHDL_0-1717847337878.png

 

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

paczola
Tourist
4 0 2

Hi, yes please but also there is another link “continue shopping” when I open the cart and have products in my cart.( Circled in red. )

i would like to remove it or connect it to my products page as at the moment when i click on the link ‘continue shopping” it takes me to an empty page. 

IMG_6873.jpeg

BSSCommerce-HDL
Shopify Partner
2305 835 908

This is an accepted solution.

Hi @paczola, Pls insert this code to your file css: 

body:has(#cart) a[href='/collections/all'] {
  display: none !important;
} 

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍

Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

paczola
Tourist
4 0 2

Amazing! Thank you very much.