Last Modified Notice at bottom of page

Last Modified Notice at bottom of page

by Alan Murphy -
Number of replies: 3
I'm running 1.8.4. Is it possible to remove the 'last modified' timestamp from the bottom of resources pages?
Average of ratings: -
In reply to Alan Murphy

Re: Last Modified Notice at bottom of page

by Mathieu Petit-Clair -
Picture of Core developers Picture of Moodle HQ Picture of MoodleCloud team Picture of Plugin developers Picture of Testers
You could modify the css for your site, adding the following:

 
.mod-resource .modified {
display: none;
}


This will prevent the display of the last-modified line, but it will still be in the source code of the page.

Preventing it from being there at all would involve modifying the resource module.
Average of ratings: Useful (1)
In reply to Mathieu Petit-Clair

Re: Last Modified Notice at bottom of page

by Alan Murphy -
That worked perfectly. You are an absolutely star!
Take care
Alan
Average of ratings: Useful (1)
In reply to Mathieu Petit-Clair

Re: Last Modified Notice at bottom of page

by Manuel Costales -

Thanks! But in fact I put this bit of code

div.modified{

display:none;

}

I'm using the version 2.4

Average of ratings: Useful (3)