I would like to use [[category:name]] to list the articles within the category, but omit articles within certain namespaces unless the user is a member of a certain group.
Is this possible?
Any help greatly appreciated
I would like to use [[category:name]] to list the articles within the category, but omit articles within certain namespaces unless the user is a member of a certain group.
Is this possible?
Any help greatly appreciated
Is this what you're looking for? http://www.mediawiki.org/wiki/Extension:Hidden_pages
I noticed you're running 1.20.2, which has group CSS and js pages, such as MediaWiki:Group-sysop.css
. Assuming you're hiding Mediawiki pages, add
.page-Category_CATEGORYNAME a[href*="MediaWiki"] {display:none;}
to MediaWiki:Common.css
, then add
.page-Category_CATEGORYNAME a[href*="MediaWiki"] {display:inline !important;}
to MediaWiki:Group-sysop.css
. This does leave a spare bullet point behind though, which can only be removed with javascript as CSS3 doesn't support selecting a parent selector. For more information on that see here.