How to add "add to cart button" to featured collection

Hello shopify community!

Currently I am working on setting up a store with the Impact theme but I would like to put a “add to cart” button next or below the pricing in a featured collection. This way people should be able to add to the cart without needing to go to the product page first.

Could you please tell me how can I do that?

This is an example:

my store: https://skence.com/

You need to find the featured collection liquid file and then the position where you want to add the add to cart button and do something like this

{%- form 'product', product, class: 'form', novalidate: 'novalidate',
        data-type: 'add-to-cart-form'
      -%}

{%- endform -%}
1 Like

Thank you, Lunaworks!!!