Forum Replies Created
-
I’d suggest not creating or editing anything from within wp-admin. It’s a pretty poor experience right now, and I’ll be putting some work into it for 2.2. It’s not nearly as helpful or powerful as it should be, and is more likely to break things than anything else.
In the receiving end, bumping topics here is really annoying, so I’d recommend not doing it. 🙂 These forums don’t move quickly enough to necessitate it, and we’re all volunteers that will help you whenever we have the opportunity to do so. A bump, even with friendly intentions, just ends up making us feel bad because we took a few days off, and making us look like we’re lazy to everyone else.
Also, cryptidwolf is incorrect, and offers nothing to this conversation that helps you with your issue(s) of which it seems like there are 2; the first being you can’t get the forum index sorted, and that once you do, you want it to look differently than the default templates look.
The way I suggest fixing it, is to create your own custom page template with the look and feel that you want your index to have. It’s no different than a WordPress theme; if you want it to be different than it is, you sometimes have to do it yourself.
The forum/category sections are a layout that a few people are working on, and certainly could be a bbPress core feature. Since bbPress has always been topic and content focused, the forum layout isn’t something that gets a lot of attention. Sorting out the forum/category hierarchy and layout is actually a pretty complex set of loops to automate, as it involves checking depth and walking a tree of forums that could potentially be outside of the current scope.
I haven’t bothered looking too far into it since it’s something that will take concentrated time and effort, and there are other things bbPress needs before that becomes the top priority to put time towards. If you, or anyone else wants to put the time in because it’s important to you, I’d happily review and commit a patch to make sure it’s included in future versions.
I know this isn’t the best set of answers you were looking for, but it’s all I have for now.
In reply to: Gettting error while creating new topics.Shouldn’t be happening with Twenty Ten. Basically, this is a nonce check error. Nonces are used through out bbPress to make sure you’re actually invoking actions on your own request, and that someone hasn’t duped you into doing something you didn’t want to do.
This is the first I’ve heard of this, so some plugin or theme is really interfering with things. bbpress.org is always running the latest build, so if it’s not broken here, it’s not broken in core.
That’s pretty odd. Do you have server specs you can share? PHP version, available memory, apache/nginx, etc…?
In reply to: import untouched contentI don’t understand. Do you mean here at bbPress.org? If not, and you mean the bbPress software, it’s using whatever WordPress core uses.
In reply to: bbPress.org Updated to 2.1Closing this; it’s old news now, and we’re on to the next batch of enhancements.
In reply to: The Slickest BBPress ForumYou should add this to the codex showcase page.
You can stop bumping this. I don’t know what “proper attention” means to you, but I can’t look at it any more than I already am. If it’s critical to you and your site, dive into the code and start fixing things.
In reply to: Theme format lost on latest bbPress updateNot a bbPress problem. Looks like your theme is a child theme of BuddyPress’s bp-default, and it uses hardcoded relative paths in its @import rules. Any number of things could be going wrong here, but it wasn’t updating bbPress that caused this to happen.
Everything looks like it’s working now?
In reply to: Like bbpress.org/forumsLots of posts about this already. Eventually we’ll open source the theme. Until then, build it yourself or wait. 🙂
In reply to: BuddyPress: Report AbuseIf it’s for BuddyPress, you should ask over at buddypress.org. 🙂
In reply to: Forum page showing all topicsSomething is filtering the parent out of the query. Mostly likely a rogue plugin or the theme is incorrectly using query_posts()
In reply to: How to force bbpress to use certain page template?You’re welcome. Look forward to seeing your codex page. 🙂
In reply to: Making Backend Profile page same as Frontend oneSince the admin area has a settings API that it uses, compared to bbPress which currently uses customized templates, you’ll have to do some developer work to integrate them. Until bbPress has API’s for theme-side fields, this will likely be a one-off solution for your specific use-case.
In reply to: Unread pluginThis would be really great.
In reply to: What theme does this site use?I’ll likely open-source the theme in a few weeks.
In reply to: New version of bbpress has caused fatal error?No idea what royal_login() is, but it’s not related to bbPress.
In reply to: Can't view or post to forums after 2.1 updateI’d advise against reverting back. Instead, in your theme’s functions.php, put…
$GLOBALS['bbp'] = bbpress();
In reply to: Tag Cloud not working in 2.0.2Some plugin is not filtering queries correctly, and is intercepting bbPress’s query and breaking it. Try deactivating plugins and seeing which one isn’t playing nicely.
In reply to: phpBBWhat error do your users get?
I’m a little confused by what netweb is telling you to do. The bbPress Moderation plugin is actually the thing that ENABLES the behaviour you’re experiencing. Without that plugin, your users should be allowed to create topics and replies on their own without any intervention from you or anyone else.
Deactivate the bbPress Moderation plugin, deactivate bbPress, activate bbPress. That should reset all of bbPress’s role and capability mapping, in the event something is broken.
In reply to: How to force bbpress to use certain page template?There is documentation, at codex.bbpress.org. It’s a wiki, so you’re free to teach yourself how bbPress works, and contribute your knowledge upstream so others can learn from you.
That said, what you want to do is as easy as making a bbpress.php template in the root of your theme. It will act as the wrapper for all bbPress content.
In reply to: How is the user profile page being generated?Files in the /extras/ folder are not actually used by bbPress’s theme compatibility, and are only there as extra root level templates for people that want to make their own themes.
Most likely it’s using your page.php as a wrapper, and pulling in the template parts in /bbp-theme-compat/bbpress/user-…
In reply to: Should bbPress work 'out of the box' with my theme?That’s annoying. Replace that call with bbp_get_forum_parent_id().