Alain Collins
Alain Collins

Reputation: 16362

How to suppress 'Categories' list in mediawiki mobile footer

The list of a page's categories do not appear in a desktop browser, but do appear at the bottom of the page on mobile.

I use categories to generate DynamicPageLists and for internal tracking that aren't for human consumption,so I don't want to show them to users.

How can I disable it on mobile?

Upvotes: 2

Views: 94

Answers (1)

Robis Koopmans
Robis Koopmans

Reputation: 408

You could hide them with CSS

#catlinks {
    display: none;
}

Upvotes: 1

Related Questions