Forum Replies Created
-
In reply to: Creating an FAQ for the bbPress Codex
Thanks everyone again for taking this and running with it. It’s a huge, huge help.
In reply to: This could be much simpler for basic users…There are shortcodes for sign-up, login, and lost-password forms. Since there’s no UI for shortcodes in WordPress, you’ll need to check the bbPress codex to find them.
In reply to: Two different forums with different rulesYou’ll want to research ‘WordPress multisite” and bbPress will take care of the rest. Most of the issues you’ll run into aren’t up to the software, but rather the user’s experience of visiting two forums, and how you choose to handle that strict divide.
In reply to: bbPress Plugin 2.1.1 breaks phpBB user pwd resetThis should be fixed in 2.1.1 actually. The problem is each user has a meta value stored with ‘Phpbb’ when it should be ‘phpBB’. Updating the old meta keys should fix it, and I’ll add that bit into the next bbPress update.
In reply to: Forum says "logged out" when I am logged in.Sounds like cookies or caching, both of which are up to you to tune and troubleshoot, since bbPress’s stock settings play nicely with WordPress core in those regards.
In reply to: Two different forums with different rulesYou could use a subdirectory multisite installation of WordPress, and then activate bbPress on each site.
In reply to: Working with WP-FilebaseI’m not familiar with it myself. This gives you the opportunity to become the expert in making them work together. 🙂 Report back here what you find, and as you have specific questions we’re happy to guide.
In reply to: Modifying Page Title in Forums ArchiveI would like to remove the post to my site above
Done.
NOTE: The update to 2.1.1 did not fix this bug.
It certainly should have. Try going into Tools > Forums and using the tool to recalculate private and hidden forums. If that doesn’t fix the issue for you, something else is broken fairly specific to your configuration.
In reply to: This could be much simpler for basic users…It’s true. The little shiny pieces of polish, and the things you don’t have to do, are what make software easy to use for everyone, and ultimately more successful as a result.
If you’re holding off on using bbPress because it doesn’t do everything you need it to do out of the box, you’re just not the audience for the software (yet.) Clearly it’s not useless; we’re using it here very successfully.
If your users can’t figure out how to use your site, it’s up to you to cater the theme to fit their wants and needs. If turn-key bbPress isn’t it, that’s totally okay – you’re free to manipulate the design however you’d like.
Future versions of bbPress will receive more and more refinement. Hopefully they improve your outlook – if not, hopefully you contribute code changes upstream to improve the software.
In reply to: bbPress 2.1 User Profile and FavoritesAnything is possible. Right now, you’ll need to custom build something to meet the needs for your install(s). There’s nothing preventing this from happening, but you should know that BuddyPress expects that it’s user profiles are the canonical ones, so you’ll have a bit of customizing to do.
It’s because the topic is closed. You should be able to override this pretty easily with CSS in your theme.
In reply to: Cross Forum Search on bbpress.orgNo, it’s not.
Sounds like something in your sidebar is calling query_posts() or some other query that’s nooping your main query loop. Or, your sidebar is being included before the main content, and manipulating the main query.
Either way, you’ll probably have better luck making a bbpress.php template in the root of your theme, and including your sidebar there. That way it’s done in one shot, without needing to manipulate a bunch of template files.
In reply to: Cross Forum Search on bbpress.orgEventually. I’m working up to it. 🙂
In reply to: bbPress update 2.1.1 and buddypressDon’t see any obvious reason there would be any conflict. There isn’t over on testbp.org. Most likely something with the theme isn’t cooperating.
In reply to: Can I make the editor bigger?We use the WP Markdown plugin here, mostly as a trial run to see how it works. The plugin author specifically supports bbPress, and I’d like to keep trying out new and neat bbPress plugins here as we experiment with what works, what doesn’t, and what ideally we want to be in bbPress core.
In reply to: bbPress Language FilesJust updated to 2.1.1 – «Topic Description» is still not in the pot-File…
I don’t see ‘Topic Description’ as a string anywhere in 2.1.1.
In reply to: Change Breadcrumb text or remove breadcrumbDrop something like this in a plugin or your theme’s functions.php.
function your_filter_thing( $args = array() ) { $args['home_text'] = 'Home'; $args['root_text'] = 'Forums'; return $args; } add_filter( 'bbp_after_get_breadcrumb_parse_args', 'your_filter_thing' );
In reply to: Forums page redirection loop when using httpsIs it the permalink setting, https, or both? I haven’t experienced these issues yet anywhere, but that doesn’t mean they don’t exist.
In reply to: Key MasterMakes sense to me. Better user management is one of my focuses for 2.2, so I’ll keep this in mind.
Glad you got it sorted.
In reply to: Editors cannot see Topics and Replies in DashboardThis was done on purpose in 2.1, to prevent Blog editors from moderating Forum data. I’m open to rethinking the restrictions here, but it was requested quite a few times.
I’m looking into including better user capability management in 2.2. I think there are different use cases for different types of installations, so it makes sense to me to be able to customize these things in core.
In reply to: Slow down; you move too fastThat narrows it down to the logic inside the bbp_check_for_flood() function, in bbp-common-functions.php. Would be great if y’all could help troubleshoot, and we’ll get it fixed for the next release.
In reply to: Reply area cut off after upgrading to 2.1Something in your theme’s CSS is causing the editor to be too wide. Open up Firebug or Inspector and take a look!
In reply to: Videos in BBPressIt is new in 2.1, which should not ‘break your website.’ If it does, I’d like your help to figure out exactly what’s going on.