Hi,

I was wondering if it possible to add new widget zone on each item in shopping cart.
I have few plugins that require to put some new details on column "Products" on each item.
And there is no other efficient way to do this without changing core files.

File
Views/Components/OrderSummary/Default.cshtml
on the bottom of column Products

...
<td>
...                        }
@await Component.InvokeAsync("Widget", new { widgetZone = "shoppingcart_item_product_column_bottom", additionalData = item.Id })
</td>
...