Community Central
Register
Community Central

Default number of posts[]

The Parameters table says the default number of posts is 5, but the examples say including the tag without any custom parameters will show 6 posts. Please edit either section as appropriate. —This unsigned comment is by SethFu (wallcontribs) 03:19, 16 October 2016‎. Please sign your comments by adding "~~~~" in the source editor.

Fixed, thank you! Five is correct. -BertH (help forum | blog) 18:16, October 17, 2016 (UTC)
The default is now changed to 4 (as of November 17) and the page is updated to reflect that. -BertH (help forum | blog) 18:22, November 16, 2016 (UTC)

Discussion Feed sort by recent activity?[]

The sort by trending doesn't push small amounts of activity (single replies) to the top, which for a small community will make the discussion feed useless. Is there a way to sort the discussion feed by most recent reply?   KyuKyu (talk) 06:27, December 29, 2016 (UTC)

CSS Subpage[]

Is there going to be a section on the classes that make up the activity feed? Should users attempt to make one, or could the classes change too much in the future to have reliable long-term info? I was wondering for people who might want to remake their feeds like this.
UrsuulWallDADate12:25 PM Wednesday, August 23, 2017 (UTC)

Title Only?[]

Would it be possible to create a parameter to only display the discussion's title? I added 2 activity feeds to our mainpage: a 'General' feed and a 'News' feed (pulling from a new/announcements category). The general one looks great as-is in the main space. The news feed goes in the side column, condensing to it to only titles would save a lot of vertical space. -Pusillanimous (talk) 21:35, December 24, 2017 (UTC)

You should send your suggestion to Special:Contact/general. It's not possible at the moment. -- Cube-shaped garbage can 21:59, December 24, 2017 (UTC)
Thanks! I'll do some more digging around first, something like the wiki activity in the (non-mainpage) sidebar wikirail content would be ideal so maybe there are other options. --Pusillanimous (talk) 01:42, December 26, 2017 (UTC)
You could use CSS to cut away everything except for the title.
~Ursuul (Talk)

Columns not showing[]

Definition:

	<mainpage-leftcolumn-start/>
		<!-- Content --> 
	<mainpage-endcolumn/>

	<mainpage-rightcolumn-start/>
		<discussions columns="2" size="6" />
	<mainpage-endcolumn/>

While the discussions activity feed tag is in the right column and viewing on a Desktop monitor (at 968px width), the "Trending Discussions" section is only in a single column, even thought its setup for two columns.

After review of the CSS inheritance, looks like the Media Query in Qualaroo.scss , "Only Screen and (max-width: 1023px)", is overriding the ".embeddable-discussions-module" class. Effectively overriding the "display:flex" declaration in the appropriate definition.

After further review, it looks like that whole Media Query is causing the Column feature to be null and void, do to styling.

@media only screen and (max-width:1023px){
    .WikiaRail,.main-page-tag-rcs{
		/*** Definitions **/
    }
    .WikiaRail .module,.WikiaRail .admin-dashboard-module,.main-page-tag-rcs .module,.main-page-tag-rcs .admin-dashboard-module{
        box-sizing:border-box;
		display:inline-block;  <----- Problem Override
        margin:12px 8px;
        position:static;
        vertical-align:top;
        width:330px
    }
    .WikiaRail .module .carousel-container,.WikiaRail .admin-dashboard-module .carousel-container,.main-page-tag-rcs .module .carousel-container,.main-page-tag-rcs .admin-dashboard-module .carousel-container{
		/*** Definitions **/
    }
    .WikiaRail .rail-module,.main-page-tag-rcs .rail-module{
		/*** Definitions **/
    }
}

.embeddable-discussions-module{
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:flex;	<-- Being Overridden
    -ms-box-orient:vertical;
    -webkit-box-orient:vertical;
    -ms-flex-direction:column;
    -webkit-flex-direction:column;
    flex-direction:column;
    border:1px solid #4d4d4d;
    margin:0;
    padding:3px 21px 30px 27px
}

Goldbishop (Talk | Contributions ) 13:22, February 21, 2019 (UTC)