How to remove Last Modified tagline
by
Rob Engler
—
last modified
Oct 21, 2009 10:05 PM
The way it is control in Plone is via the document_byline template macro, invoked in the bottom of the document_view template and other. There are two options to get the date and contributor removed:
- Simply remove the reference to
document_bylinein your template views and you're done. - Modified the ploneCustom.css in your portal_skins/plone_styles add the following line:
.documentByLine { display:none; }
In my opinion this is follows the design of Plone2 which attempts to control everything from CSS.
Source: UC Merced School of Engineering

