The add-to-cart-button-list block displays a button that allows users to add products in the Minicart from a guest page if the quantity purchased has not yet reached the limit.

Configuration
- Import the
vtex.listapp to your theme's peer dependencies in themanifest.jsonfile as in the following example:
_10 "peerDependencies": {_10 "vtex.list": "3.x"_10 }
- Add the
add-to-cart-button-listblock to other theme block using the product context, such as theproduct-summary.shelf. For example:
_10 "product-summary.shelf": {_10 "children": [_10 "product-summary-image",_10 "flex-layout.row",_10 "flex-layout.col",_10+ "add-to-cart-button-list",_10 "gifted-button"_10 ]_10 }