@Cindy According to the docu $wgCommentStreamsAllowedNamespaces = [];
should make comment streams optional on the content namespaces, i.e., they should only show if I add <comment-streams />
However, with this setting I stell get comment streams by default on the content namespaces. Is this a bug or did I misinterpret the docu?
Topic on Extension talk:CommentStreams
Appearance
Try $wgCommentStreamsAllowedNamespaces = [-1];
I was almost right. From the source:
// if $wgCommentStreamsAllowedNamespaces is not set, display comments
// in all content namespaces and if set to -1, don't display comments
// unless they are explicitly enabled on the given page
So, use $wgCommentStreamsAllowedNamespaces = -1;
Cool, thank you for your help. I verified with a wiki that $wgCommentStreamsAllowedNamespaces to -1.
allows for comments on pages with tags only. Currently, the docu on the extensions page states, "To disallow comments on all namespaces even in the presence of the <comment-streams />
tag function, set $wgCommentStreamsAllowedNamespaces to -1.
." which is what derailed me.