MediaWiki 1.36.1
If I go to any category page there is a link on top of it, named "Help".
How to remove it from all category pages?
MediaWiki 1.36.1
If I go to any category page there is a link on top of it, named "Help".
How to remove it from all category pages?
I guess setting the page MediaWiki:namespace-14-helppage to something that is not a valid page name (but not empty or '-') would do it. For example, setting it to '<'.
You could also add css like .mw-helplink { display:none}
(That will kill all help links, not just the category ones)
I've used .mw-indicators {display: none} and according to past me's comments this gets rid of things including help links on category pages.
What I did was to go to
skins/Timeless/includes/TimelessTemplate.php
And comment the code which prints the button, so
$this->getIndicators() .
Becomes
// $this->getIndicators() .