是否可以隐藏或删除显示在添加到Orchard的每个内容末尾的日期和作者?我在仪表板上找不到这样做的方法:(
我有Orchard 1.6.0和Bootstrap主题。
下面是我尝试退出/隐藏的图像:

谢谢你的帮助。祝你今天过得愉快。
发布于 2013-04-17 02:58:44
通过将其添加到主题的Placement.info来隐藏它们
<Match DisplayType="Detail">
<Place Parts_Title="-"/>
<Place Parts_Common_Metadata="-"/>
</Match>
<Match DisplayType="Summary">
<Place Parts_Title="-"/>
<Place Parts_Common_Metadata="-"/>
</Match>您可以使用果园的形状跟踪功能来识别这些部件,然后在placement.info中显示/隐藏它们。
发布于 2013-12-17 05:13:12
我也在玩Bootstrap主题,发现穆罕默德的脚本隐藏了超过必要的内容,并导致内容开始,隐藏在标题下。
在{Theme Folder}/Placement.info中,达到了延森预期的效果:
<Placement>
<Match DisplayType="Detail">
<!--<Place Parts_Title="-"/>-->
<Place Parts_Common_Metadata="-"/>
</Match>
<Match DisplayType="Summary">
<!--<Place Parts_Title="-"/>-->
<Place Parts_Common_Metadata="-"/>
</Match>
...https://stackoverflow.com/questions/16044634
复制相似问题