Add products to the cart within the list view
In some cases you don't need a detail page for the products and want to allow adding products to the shopping cart within the list view.
Integration
Create in your extension (e.g. your EXT:) an overwrite of
EXT: or
EXT:.
Then you add the snippet as shown below:
EXT:sitepackage/Resources/Private/Cart/Partials/Products/List/Grid.html
...
<f:cObject typoscriptObjectPath="lib.cartProduct.showForm" data="{productUid: '{product.uid}'}"/>
...
Copied!