In Orchard I have a placement.info file that should hide the Title part when I view an Author:
<Match ContentType="Author">
<Place Parts_Title="-" />
<Place Parts_Breadcrumbs="-" />
</Match>
Author is a custom content type I've created and the Breadcrumbs Part is a custom part.
The breadcrumbs part is hidden, but the title is still displayed. If I inspect it with Shape Tracing it is definitely Parts_Title I want to remove, but the content of my placement file doesn't seem to work.
Any ideas?
Parts_Title
and the Active Template as~/Core/Title/Views/Parts.Title.cshtml
. If I create an empty file calledViews\Parts\Title-Author.cshtml
the title is hidden. I just can't get it to work from insidePlacement.info
– greg84