Debut Theme: Add to Cart button on homepage/collection pages

Hi,

This question has been raised a few times, but I can’t get it up and working (outdated posts?) and I have an additional question regarding the design.

As I am using Debut theme there is by default no “add to cart” button below the products on the homepage/collection pages. I would like to add an “add to cart” button in the same style as if you would create a Buy button for an external site (Sales Channels > Buy button > Create a buy button). Please find an image below.

Can anyone help me out? Thanks in advance!

1 Like

@cdanielc

can you please try this

Just follow the steps for Debut theme for Add to cart button on collection pages.

  • From Shopify Admin select Online Store and click on Themes

  • Choose your main theme

  • Click the . . . on the top left-right (see below) and hit Edit code

  • Open Snippets → product-card-grid.liquid File and paste below code at the end of the page.

    <form method="post" action="/cart/add">
      <input type="hidden" name="id" value="{{ product.variants.first.id }}" />
      <input min="1" type="number" id="quantity" name="quantity" value="1"/>
      <input type="submit" value="Add to cart" class="btn" />
    </form>
    
3 Likes

Hello. I also have problem with no “add cart” button, I didn’t notice it at first, but when after editing my shipping and delivery that’s the time I notice that there is no add cart. I’m using minimal theme. Thank you

1 Like

@Robertjl

Sorry for facing this issue, it’s my pleasure to help us.

Welcome to the Shopify community!
and Thanks for your Good question. :blush:

Please share your site URL,
So I will check and provide a solution here.

Hi @KetanKumar , I noticed you managed to help some other Shopify store owners with this issue. I’m facing the same issue now trying to align my Add to cart buttons on my collection page.

  1. I’d like to make it so the Add to Cart button is in line with the Quantity.

  2. I’d like to fix the height o the Product title so that the Quantity and Add to cart line will be aligned.

Would appreciate your help with this. Thank you!

Kristyn

1 Like

@SkynSin

Sorry for facing this issue, it’s my pleasure to help us.

Welcome to the Shopify community!
and Thanks for your Good question. :blush:

Please share your site URL,
So I will check and provide a solution here.

1 Like

Hi, thanks for replying!

This is my URL: SkynSin.com

Hi @KetanKumar , thanks for replying!

This is my URL: SkynSin.com

@SkynSin

is this fine look?

1 Like

Hi @KetanKumar

Yes that looks better! But can the Product Title be in line with the picture and the Quantity line?

Thanks!

1 Like

@SkynSin

yes, please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
    this code apply for after 5 - 6 second
.product-card + form {
    display: flex;
    justify-content: space-between;
}
.product-card + form input {
    width: 70%;
}
.product-card + form input#quantity {
    width: 25%;
}
1 Like

Hi @KetanKumar , I applied it and waited for a while but it still doesn’t seem to be working?

1 Like

@SkynSin

oh, what’s an issue can you please us after add above code

1 Like

Hi @KetanKumar , I’ve added the above code as follows but the edits are not appearing on my collection page: https://skynsin.com/collections/single-sheet-mask

Grateful for your assistance! Thanks.

1 Like

@SkynSin

HI @KetanKumar how are you. notice you helped other users that have similar problem than me. I was able to put the add to cart button buy I would like to put it besides the box to inlcude quantity, not below. Please do you know how to do this? my website is https://carnavalmayorista.myshopify.com/ password for now is mayorista Also just if you know, can I remove the box were it says “oferta” (sale in spanish)??? Thanks so much!

1 Like

@Mayaps

Sorry you are facing this issue, it would be my pleasure to help you.

i can’t see now do you have fix?

1 Like

HI, hope you a re doing good.

I was able to remove the sale box, but still cannot find how to put the Add to cart box besides the qty box in colecction page and in product page also. I use debut theme. https://carnavalmayorista.myshopify.com/ password mayorista

1 Like

@Mayaps

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
    this code apply for after 5 - 6 second
.grid__item--collection-template form {
    display: flex;
    align-items: center;
    justify-content: space-between;
flex-wrap: wrap;
}
.grid__item--collection-template form input#quantity {
    width: 70px;
}
1 Like

Thank you so much!!! worked for collection page. Just if you can, could you help with same thing but in product page? So that add to cart box appear besides qty box!! Thanks so much!