How to Remove "Choose Option" Buttons From Collection Cards On Refresh Theme?

Solved

How to Remove "Choose Option" Buttons From Collection Cards On Refresh Theme?

SpoiltRottenUK
Tourist
7 0 6

I have attached an image that shows where they display (highlighted in red)

If anybody could tell me how to remove these buttons via code that would be great,

this is because our personalisation apps do not show up on the quick add page.

 

Hope somebody can help

 

Thanks!shopify question.JPG

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10203 2423 3069

This is an accepted solution.

Hi @SpoiltRottenUK ,

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
.quick-add {
    display: none;
}

Result:

Ribe_Dagandara_0-1687892381783.png

I hope it help. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 16 (16)

suyash1
Shopify Partner
11000 1362 1738

@SpoiltRottenUK - can you please share this page link?

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

Made4uo-Ribe
Shopify Partner
10203 2423 3069

This is an accepted solution.

Hi @SpoiltRottenUK ,

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "Assets" folder, click on "base.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
.quick-add {
    display: none;
}

Result:

Ribe_Dagandara_0-1687892381783.png

I hope it help. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
SpoiltRottenUK
Tourist
7 0 6

Thank you so much!

 

Worked like a treat

Made4uo-Ribe
Shopify Partner
10203 2423 3069

Welcome!😊

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
HELDERWRLD
Pathfinder
150 0 8

How can i do it for Dawn Page?

 

Link: https://c04baf-2.myshopify.com/

Pass: Diversusoficial

Made4uo-Ribe
Shopify Partner
10203 2423 3069

Hi @HELDERWRLD 

Do you mean remove the option button? 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
HELDERWRLD
Pathfinder
150 0 8

That is correct. But already used the same code you sent and it worked. Thank you.

Can you support me on other issues i have please? If possible.

Rob_H247
Tourist
10 0 6

I pasted this code in the exact location for my dawn theme but made no change. Can you help? 

Made4uo-Ribe
Shopify Partner
10203 2423 3069

Hi @Rob_H247 

You may have different code. Do you mind to share your store? with passsword if its unpublish.Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
miguelmakonga
Visitor
1 0 0

Hi Made4u! I tried this and it worked, but only for desktop. Do you know how to get this on mobile too?

Made4uo-Ribe
Shopify Partner
10203 2423 3069

Would you mind to share your store URL? If this still not solve yet. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
KrishnaGoel
Visitor
1 0 1

Thanks! @Made4uo-Ribe It works for me

CrazyDrifts
Visitor
1 0 0

My Shopify page is crazydrifts.com password is Bayreuth it is still not working I put the code at the bottom of bases.css.

suyash1
Shopify Partner
11000 1362 1738

@CrazyDrifts - please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css

 

.quick-add__submit{display:none; visibility:hidden;}

 

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Made4uo-Ribe
Shopify Partner
10203 2423 3069

Hi @CrazyDrifts 

Try this code below. 

.card--card .quick-add {
    display: none;
}

And Save. 

Result:

Made4uoRibe_0-1744149524799.png

But I check your base.css your paste it wrong. 

Made4uoRibe_1-1744149556509.png

Change it like this. 

Made4uoRibe_2-1744149583753.png

You dont need also the other code that I give. This will work by correcting the code you paste. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

Pradeep02
Visitor
1 0 1

Helped me a lot after breaking my head past two days. Thank you so much for making things this simple.