Quantcast
Channel: bbPress.org » All Posts
Viewing all 3669 articles
Browse latest View live

Reply To: Forums index does not work

$
0
0

Using the actually Forum post ID works:

/forums/forum/forums/

But the URL is a mess.

The actually forum post URL is alright

/forums/topic/welcome-linux-game-consortium-forums/


Reply To: Forums index does not work

$
0
0

you can take out one of the forums by

dashobaord>settings>forums>Forum Root Slug>Forum Prefix and untick

Reply To: Forums index does not work

$
0
0

All good already. Found some redirects from previous forum creation attempts.
After deleting these and anything related to the previous forum and voila, good to go.
So the index works as expected as well. With a search enabled too.

Thanks for the help Robin.

Reply To: Forums index does not work

Argghh.. I can’t turn off the indent

$
0
0

I’ve looked in here, I’ve looked on the net. I tried all suggestions for CSS, and the threading is disabled in the settings. Yet the replies on the forum are indented.

Link vs. Add

It looks horrible, please how do I turn it off. I use the Sydney theme.

Reply To: Argghh.. I can’t turn off the indent

$
0
0

it’s caused by

#bbpress-forums .reply {
  margin-left: 0 !important;
  width: auto !important;
}

which says it is inline code.

The width: auto !important needs to be width :100% !important.

Auto makes it only as wide as it needs to be, so for short sentences it truncates.

But I’m also getting an error saying that your “sydney-child-theme/style.css could not be loaded”

Reply To: Argghh.. I can’t turn off the indent

$
0
0

Thanks for the heads up on the error Simon, and thanks also for the fix, am certain I tried that previously, can’t have done though.

All the very best for Christmas holidays. 🙂

Size of box for listing sub forums


Reply To: Size of box for listing sub forums

$
0
0

theme related

You’ll need to supply a link to an example on the site

Reply To: Size of box for listing sub forums

Reply To: Size of box for listing sub forums

$
0
0

Line 4255 of your theme Pixiehuge has

#bbpress-forums li.bbp-body ul.forum li {
	height: 100%;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	justify-content: center;
	-webkit-justify-content: center;
}

The height : 100% is the issue

You need to put

#bbpress-forums li.bbp-body ul.forum li {
	height: auto;
}

or

#bbpress-forums li.bbp-body ul.forum li {
	height: auto !important;
}

(Try without the !important first)

into your theme’s custom css, or the custom css part of my bbp style pack plugin

Reply To: Size of box for listing sub forums

$
0
0

ok with important works

got other question is ther some plugin to migrate mybb to bbpress that works ?

Reply To: Size of box for listing sub forums

$
0
0

ther is now like max 3 sub forums to choose but ther should be more

Reply To: Size of box for listing sub forums

$
0
0

you have total height constrained by

#bbpress-forums li.bbp-body ul.forum {
	border-top: 0;
	height: 90px;
}

so

#bbpress-forums li.bbp-body ul.forum {
	height: auto !important;
}

Reply To: Size of box for listing sub forums

$
0
0

got other question is ther some plugin to migrate mybb to bbpress that works ?

as far as I know the convertor in bbpress works

dashboard>tools>forums>import forums


Reply To: Size of box for listing sub forums

$
0
0

now it works perfect tnx a lot Robin

Now i need to find way to migrate users from mybb to bbpress

Reply To: Size of box for listing sub forums

Reply To: Size of box for listing sub forums

$
0
0

yea i tried but he id not copy users

Reply To: Size of box for listing sub forums

Reply To: Freshness Link

$
0
0

Is it possible to post your final, working code used?

Viewing all 3669 articles
Browse latest View live


Latest Images