[Help Bertrand]
I have a custom content type using a mediapicker field.
After I installed Nwazet.commerce for evaluation, the Admin Content display of my custom type contents was disturbed, the image was displayed before my content.
I have not even created anything in the ecommerce module, just enabled it.
Setting a break point in the Render method of ShapeTemplateBindingStrategy, I realized that there was a BindingSource called named .....\Modules\Nwazet.Commerce\Views\MediaPickerProductImageSummaryAdmin.cshtml which was called to display the image field....
see 
Any explanation welcome.
I am using a custom theme, here is my placement info
<Placement>
<!-- Customize where the shapes are rendered -->
<Placement>
<Match Path="~/">
<Place Parts_Title="-"/>
<Place Parts_Common_Metadata="-"/>
</Match>
</Placement>
the placement info of my custom type, BSCarouselSlide, is here
<Placement>
<Place Parts_BSCarouselSlide="Content:2"/>
<Place Parts_BSCarouselSlide_Edit="Content:2"/>
<Match DisplayType="SummaryAdmin">
<Place Parts_BSCarouselSlide="Content:1;Alternate=Parts_BSCarouselSlide_SummaryAdmin"/>
<Place Fields_MediaPicker="-"/>
<Place Parts_Title="Content:1"/>
</Match>
<Match DisplayType="Summary">
<Place Parts_BSCarouselSlide="Content:1;Alternate=Parts_BSCarouselSlide_Summary"/>
</Match>
</Placement>
```
Last comment, my code is the last december v1.6.
|