Hi all,
I have a site running with a shop. In the master.html of the site, I've included a global.paragraph written in razor. The paragraph is just an extra cart of sort, displaying product price etc. I have included the paragraph, because it's written in razor and the master is written in html. With this work-around, the razor part gets rendered server-side. So far, so good.
<div class="col-lg-12 col-md-12 col-sm-12">
<!--@Global:Paragraph.Content(4058)-->
</div>
However, in the paragraph, I can't access the Ecom-class. I would like to retrieve the following properties:
Ecom:Order.OrderLines.TotalProductQuantity
Ecom:Order:OrderLine.ProductLink
Ecom:Order:OrderLine.ProductName
Sadly, these properties seems not to be available from my paragraph.
Is there a way to make the Ecom-properties available from a paragraph.
/BR
Martin