How can I remove the quick add to cart from a specific product?

Hello,

I added this code in order to add an add to cart button below each product on the collection page:

<form method="post" action="/cart/add">
    <input type="hidden" name="id" value="{{ product.variants.first.id }}" />
    <input type="submit" value="{% if product.variants.first.available%}AddToCart{% else %}SoldOut{% endif%}" class="btn" {% unless product.variants.first.available %}disabled{% endunless %} />
  </form>  

And I would like to remove it from just one specific product on the collection grid list. Or changing its redirection and lable at least.

Anyone knows how i can manage to do this?

I would really appreciate some kind of help.

Thank you

@viaco
Hello, Can You Please Share Your Store URL with a Screenshot I will check and provide a proper solution

Thanks

Hello @oscprofessional , this is my URL: https://incantonails.com

I would like to remove the button from just this product:

And the url where you will find that is this one: https://incantonails.com/collections/all

Also, when I enable these buttons with the code I shared in my request, they also show like this on the carousels like on the home page or inside each product page:

Instead of being below the prdouct card, they show to their right.
I would really appreciate if you could help me with that too.

Thank you so much

@viaco
Hello, Please Add This CSS
Go to Online Store > Select Theme > Edit Code > assets > theme.css

.addtocart_collection {
	display: none;
}

Like This

Hello @oscprofessional ,

By doing that all the buttons disappeared and I want it to disappear only from the product I told you in my last message, because that is what I don’t know how to do it.

Thank you

@viaco
We have checked your design code
your product section and add to cart section it’s 2 different so it’s not proper to manage the below the product
go to the code and manage section then after showing properly
See This

After managing code

Hi @oscprofessional

I don’t really know what you want me to do. I’m not a coding expert, so if you could explain me I would really appreciate it.

Thank you so much