I created the CategoryPart and I added two text field to it. I want to add some custom data in the page between two text fields data. The problem is when I want to specify the place of the text field in Placement.info I just have one Shap "Fields_Common_Text" for all the text fields in the page so I can't specify different places for different fields with the same type. Is there any way to do it in Orchard? Thanks in advance.
my Placement.info is like this:
<Placement>
<Match DisplayType ="Detail">
<Place Parts_Category="Content:9"></Place>
<Place Fields_Common_Text="Content:10"></Place>
</Match>
</Placement>
The display method in driver:
protected override DriverResult Display(CategoryPart part, string displayType, dynamic shapeHelper)
{
return ContentShape("Parts_Category", () => shapeHelper.Parts_Category(CategoryPart: part));
}