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

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.

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-collection-page/td-p/550247