Re: Create A Add To Cart Button In "Feature Collection" On Venture Theme

Create A Add To Cart Button In "Feature Collection" On Venture Theme

PreciousU
Excursionist
14 0 1

Looking for code to implement on the Venture theme to display 'Add to cart" button on my featured collection section on collection pages so customers will not need to click on product page b4 can add.

Reply 1 (1)

paulryazanov
Shopify Partner
104 10 25

Hi! You can do this by adding this code:

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

 to your product-card-grid.liquid 

For more information you can find this https://community.shopify.com/c/shopify-design/how-to-add-quot-add-to-cart-quot-button-on-my-collect...

CEO of MageCloud.agency