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/
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/
you can take out one of the forums by
dashobaord>settings>forums>Forum Root Slug>Forum Prefix and untick
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.
no problem, glad to have helped
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.
It looks horrible, please how do I turn it off. I use the Sydney theme.
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”
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. 🙂
HI guys i need help with this i cant make it to autoresize box with list forums
theme related
You’ll need to supply a link to an example on the site
http://novasociety.com/forums/ here link
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
ok with important works
got other question is ther some plugin to migrate mybb to bbpress that works ?
ther is now like max 3 sub forums to choose but ther should be more
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;
}
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
now it works perfect tnx a lot Robin
Now i need to find way to migrate users from mybb to bbpress
see my response above 🙂
yea i tried but he id not copy users
Is it possible to post your final, working code used?