Hide or remove 'Compose a Text Page' option

Hide or remove 'Compose a Text Page' option

by Lauren Panton -
Number of replies: 3
We've found that our faculty do not use the 'Compose a Text Page' option under Add a Resource. I would like to remove this option or hide it from the drop-down menu. Any help would be appreciated.

Thanks! Lauren
Average of ratings: -
In reply to Lauren Panton

Re: Hide or remove 'Compose a Text Page' option

by Adma Lim -
login as Admin of your moodle, try looking under "Modules/Activities". It's probably there
In reply to Lauren Panton

Re: Hide or remove 'Compose a Text Page' option

by A. T. Wyatt -
Greetings, Lauren!

I think this is a very good question (asked before, but not answered then), and I cannot find an easy answer!
I located this old thread (2006). http://moodle.org/mod/forum/discuss.php?d=47565

To hide the text page resource from the dropdown menu, Samuli Karavaara suggests:

In course/lib.php, function print_section_add_menus() I changed
 foreach ($resourceraw as $type => $name) {
 $resources["resource&type=$type"] = $name;
 }
to
 foreach ($resourceraw as $type => $name) {
 if ($type != "text") {
 $resources["resource&type=$type"] = $name;
 }
 }