Add to Cart Button on Collection Page Shopify

Add to Cart buttons to your Shopify store can simplify your customers’ shopping experience. Each item can be added to the Add to Cart page. The Add to Cart button can be placed on a collection page to prevent shoppers being redirected directly to the product page.

This tutorial will show you how to add an Add to Cart button in your Shopify store.

Step 1 – Duplicate your live theme

Go to your Shopify admin and click on Templates. We recommend that you copy your existing live theme to ensure security.

Click on actions and, then choose duplicate from the drop-down menu. After the duplicate has been created, click on actions again, but this time, choose edit code.

Step 2: Snippets directory

From the navigation menu to the left, scroll down to the Snippets directory and click on product-grid-item.liquidor something similar to that. Here are some possible names for the file.

  • product-card.liquid
  • product-card-grid.liquid
  • product-loop.liquid

On the right side, a new window should open. (sometimes, the class of the div can be different. It’s important that you know which class is used to add the price). The code below or before the closing tag will depend on whether you want the button or quantity selector to be above or below the price.

<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>

Click Save.

Step 3 – Verify that everything is working correctly

Open the collection page in your store and give yourself a huge pat on the back.

This tutorial was quick for Shopify users. You now have the Shopify Add to Cart button code. This will allow your customers to shop easily, increasing their conversions and improving their shopping experience.