Forum Replies Created
-
In reply to: Frustrated with Login/Register – Help?
If you can report back any progress, we’ll be around to help.
Best of luck!
In reply to: Frustrated with Login/Register – Help?Sure did; thanks. I ways able to create an account easily enough, but it looks like logins are completely broken on your site; they do not even work through WordPress’s traditional
wp-login.php
directly (which is what bbPress sends login data to.)Something else is wrong, outside of bbPress, though it’s difficult to troubleshoot on this end. It might be the case-sensitive URL (with “Install” in there) or it could be any other server config, plugin, theme, or random cookie issue.
Sorry I can’t be much more help, but hopefully this helps you sniff it out.
In reply to: Frustrated with Login/Register – Help?No sweat, and happy to help. Looks like the link to your forums is bad. Can you verify the URL and link us again?
In reply to: Could a plugin developer protect his functions?A few things to check:
- Is the plugin active?
- Are you calling the function correctly (named correctly, etc…)?
- Cherry picking functions and putting them in your
functions.php
file can be tedious, since you’re stuck supporting all your own new code rather than letting the plugin do the work. Are you sure you’re comfortable with this? - If the function says it’s undefined, it means whatever file you’re putting that code in, isn’t loading. Why not?
You’ll likely have better results if you filter the results of
bbp_after_get_topic_admin_links_parse_args
like so:/** * Replace the individual link calls with your own functions */ function foo( $args = array() ) { $args['links'] = array( 'edit' => bbp_get_topic_edit_link ( $args ), 'close' => bbp_get_topic_close_link( $args ), 'stick' => bbp_get_topic_stick_link( $args ), 'merge' => bbp_get_topic_merge_link( $args ), 'trash' => bbp_get_topic_trash_link( $args ), 'spam' => bbp_get_topic_spam_link ( $args ), 'reply' => bbp_get_topic_reply_link( $args ) ); return $args; } add_filter( 'bbp_after_get_topic_admin_links_parse_args', 'foo' );
Keep in mind that each link function accepts its own parameters (including the ability to change the text to anything you want) so you can either pass new parameters, or filter each link and adjust them. This way you can just filter bbPress’s core functionality rather than rewrite everything on your own
In reply to: Private Messaging?Integrating BuddyPress and bbPress should be a breeze. One thing to keep in mind however, is that bbPress user profiles yield to BuddyPress’s member profiles. This could be overridden with a plugin, but is the default experience when integrating them together.
In reply to: New – How can I make my forum look like this one?By default, closed topics get a greyed out text color. You can override this with some CSS tweaks that target it specifically. Something like:
#bbpress-forums .status-closed, #bbpress-forums .status-closed a { color: red; }
In reply to: Frustrated with Login/Register – Help?Maybe this is already obvious, but if you’re already logged in, those pages aren’t going to work for you; bbPress will either show a message, or redirect away from them, depending on what you’re setup is.
The login page here is a (much more complicated) version of what is already in bbPress core, using a WordPress Page and the shortcode. (It’s only complex because of shared logins and integration with WordPress.org, Trac, BuddyPress.org, etc…) Meaning, it can’t be broken for you, because if you’re only using bbPress’s method and shortcodes, it’s exactly what’s also working here.
We’ve considered a few different ways of auto-creating the login/register/lost-password pages (and maybe there are some improvements we can make in this regard) however we haven’t settled on a solution we feel works for the 80% of users that want the out-of-the-box experience, that also doesn’t conflict with existing WordPress registration plugins.
If you could describe what you think the ultimate experience would be, we’re all ears. 🙂
In reply to: Anyone here want PM on their site?BuddyPress’s PMs are an okay solution for most people, the only problem being that most people will need to use BuddyPress’s profiles as a means for interacting with the UI. A custom one could be built to integrate directly with bbPress’s profiles instead, but I don’t think most users will want to go that route.
In reply to: who can share this offcial bbPress theme?I spent a few hours this weekend cleaning up the themes that power BuddyPress.org, bbPress.org, and the shared styling between the codexes, Trac’s, etc… We’ll be open sourcing all of both of those sites very soon.
You’ll (hopefully) be surprised how few modifications are made to the default styling, and how little markup and CSS there is. 🙂
In reply to: bbPress 2.5.3How did you check? How do you know? What exactly is slow?
In reply to: Moderator is unable to create forumsThe documentation was wrong. Moderators cannot create/modify forums.
I’ve updated the documentation to match what each role can do.
In reply to: Can I edit the stock forum root pageIn reply to: Can I edit the stock forum root pageThe easiest way to do this is to make a WordPress page with the same slug as your forum root. bbPress will see that page and yield to it, letting it render instead of your forums.
In that page’s content, use the
bbp-forum-index
shortcode, along with any other HTML, shortcodes, or whatever else you want there. You can get really fancy with your forum index using modifications in a child theme, custom template parts, page templates, forum archives, etc…In reply to: Edit topic reply, changes post orderThis is helpful; we really want to get this fixed.
Are y’all editing replies admin side, or theme side?
In reply to: Website login redirect to wp-adminbbPress comes with widgets and a shortcodes to help with rerouting logins and sign-ups (which are what we use here on bbpress.org), but you’ll likely want to look into other third party plugins for actually taking over and controlling the stock experience.
bbp-login
bbp-register
bbl-lost-pass
Any updates here?
In reply to: Plugin Update 2.5.3Threaded replies are now built into bbPress. You can turn them on and set the nesting levels in your Forum Settings.
In reply to: Thousands of revisionsWhat posts are these revisions for? Does some user actually have access to edit some post, and is able to click them? Have you tried logging in to your site as a non-admin, and looking around for how someone could access an ‘edit’ link to anything; maybe in the top toolbar area?
What do you mean by “private posts”?
bbPress doesn’t enable private topics or replies out of the box. What little support it does have, still allows for administrators to search for and see any non-trashed topics or replies.
Are you using a third party plugin to enable this private posting functionality?
I don’t really see this as a security vulnerability, so much as you’re using bbPress in a neat way that isn’t quite finished for your needs yet.
If we need to add support for something that isn’t possible yet, we’re happy to do it. A little bit more information will be helpful so we can suss it out.
In reply to: I am getting fatal error, help me please.For some reason, you’re using the retired version of BuddyPress’s forums, which is only used for legacy installations from over 3 years ago.
Deactivate the Forums component in BuddyPress.
In reply to: All Replies Have Disappeared Including My OwnNothing in bbPress 2.5.3 would delete any data on its own.
- Are you sure there are no replies in your administration dashboard?
- Can you take a screenshot of your site, or link us?
- Are you 100% sure updating from bbPress 2.5.2 to 2.5.3 was all that happened?
In reply to: Plugin Update 2.5.3Nothing in bbPress 2.5.3 would actually delete your replies, so you can relax a bit knowing your data is okay.
- Are you able to see replies in your administration dashboard?
- Can you take a screenshot of your site, or link us?
- Are you 100% sure updating from bbPress 2.5.2 to 2.5.3 was all that happened?
In reply to: All Replies Have Disappeared Including My OwnPretty strange. You could try recounting the replies in
Admin > Tools > Forums
though there’s no reason they would all disappear without some outside intervention.In reply to: Remove nested repliesReplacing your entire forum solution because of rogue CSS seems like burning down the house because you heard a mouse. Let’s try and fix the CSS before things get more complex.
In reply to: Forum not loading correctly – over night bugBoth links look okay to me. What exactly is (or was) broken?