Removing the Add to Cart button from product scope?

Solved

Removing the Add to Cart button from product scope?

FahlDesigns
New Member
4 0 0

I'm trying to remove the "Add to Cart" part in the hover over each ticket item. I tried hiding it in my section settings for that collections area but it doesn't do anything. Any suggestions?

 

I'm quite knowledgable with Shopify but this one is mystifying me or I'm over thinking it.

 

https://a1ccca-1b.myshopify.com/pages/market-tickets 

Accepted Solution (1)

ThePrimeWeb
Shopify Partner
2139 616 524

This is an accepted solution.

Hey @FahlDesigns,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

<style>
product-form.product-form,
product-form.product-form form {
    display: none !important;
}
</style>

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1712683869687.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

View solution in original post

Replies 2 (2)

ThePrimeWeb
Shopify Partner
2139 616 524

This is an accepted solution.

Hey @FahlDesigns,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

<style>
product-form.product-form,
product-form.product-form form {
    display: none !important;
}
</style>

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1712683869687.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!
FahlDesigns
New Member
4 0 0

Thank you very much, that was a quick reply and q quick fix. I appreciate it greatly!