orchardcmsorchardcms-1.6

Delete / hide orchard authoring and date from content?


Is it possible to hide or delete the date and author that appears at the end of every content added to Orchard? I can't find any way to do that from the Dashboard :(

I have Orchard 1.6.0 and Bootstrap theme.

Below is an image of what I'm trying to quit / hide:

Orchard author credits

Thanks for the help. Have a great day.


Solution

  • Hide them by adding this to your theme's Placement.info:

    <Match DisplayType="Detail">
        <Place Parts_Title="-"/>
        <Place Parts_Common_Metadata="-"/>
    </Match>
    <Match DisplayType="Summary">
        <Place Parts_Title="-"/>            
        <Place Parts_Common_Metadata="-"/>
    </Match>
    

    You can use Orchard's shape tracing feature to identify these parts and then show/hide them in your placement.info.