Search Results for 'bbpress'
-
Search Results
-
Topic: bbPress 2.2.2 released
2.2.2
- RTL and i18n fixes
- Improved user profile theme compatibility
- Fixed incorrect link in credits page
- Fixed admin area JS issues related to topic suggest
- Fixed template part reference in extras user edit template
Thanks everyone that’s been contributing feedback here in the forums and patches on trac!
Hi. My site has a custom WP_Query (outside the main loop) in the header (in header.php), and another in the footer (in footer.php). On all/only my bbPress pages, the paragraph breaks in this content are missing, because wpautop is not applied as it normally is.
That’s because bbPress REMOVES THE FILTER “the_content”. I tracked it down to bbp_remove_all_filters( ‘the_content’ ); in bbpress/includes/core/theme-compat.php, line 633.
In that same file, I also see bbp_restore_all_filters(), which looks like it should fix the problem. But it’s not actually working on my custom queries.
So how can I apply bbp_restore_all_filters() to my custom WP_Query calls?
Thanks for any help here!
MY WORDPRESS INFO:
Wordpress v3.4.2
bbPress v2.2.1RELATED POST:
I also had a similar issue a month ago (http://bbpress.org/forums/topic/conflict-with-custom-wp_query-in-header-php/) where bbPress conflicted with these same WP_Query calls in my header and footer. But in that case, the main content from bbPress was REPLACING the content from my WP_Query. I somehow solved that problem by just changing my slugs. But I now see it was probably caused by add_filter( ‘the_content’, ‘bbp_replace_the_content’ );, also in this theme-compat.php file.I’m using the latest WP, BuddyPress and bbPress.
I have the new bbPress forums turning on and working nicely inside new BuddyPress groups (i.e. groups that I create now, since loading the new bbPress). But for existing BuddyPress groups there seems to be a problem. The group admin for existing groups still has the correct bbPress sub-page asking me to tick the box to set up a forum for that group, which I tick and it saves OK. But when I click on the “forum” tab in that group I just get the error message; “This group does not currently have any forums.”
How do I turn on forums in existing BuddyPress groups please?
So I made the update to 2.2.1 (everything was working fine on 2.2), and the plugin successfully installed and activated. However, when I went to look at the forums, they looked like this
I deactivated bbpress and re-activated it, and now it gives a 404 page, like so
Direct links to posts go to wordpress “pages” with a stream of text.
Any ideas? Anyone else having this happen to them?
Hi,
I’m upgrading my forum from a standalone installation to the newer wordpress plugin. The URL structure is a bit different:
Old bbPres (v1.03):
Main page: domain.com/forum
Forum pages: domain.com/forum/forum/{forum-name}
Subforum pages: domain.com/forum/forum/{forum-name}
Topic pages: domain.com/forum/topic/{topic-name}New bbPress (v2.2.1)
Main page: domain.com/blog/forums
Forum page: domain.com/blog/forums/forum/{forum-name}
Sub-forum page: domain.com/blog/forums/forum/{parent-forum}/{forum-name}
Topic pages: domain.com/blog/forums/topic/{topic-name}So the main issue I have is that the forum is now in the wordpress directory, whereas I’d rather it was outside. The other issue is that now sub-forums have the parent forum in the url.
I’d like to do two things:
-> Remove the /blog/ from the forums url
-> Redirect old sub-forums to the newer domains.Does anyone know the htaccess/mod_rewrite to do this?
Topic: No Forums Base
I’d like to have the forums base just be /, is that possible with bbpress?
For instance, say I have a forum category of ‘bears’ and the forums within it are ‘grizzly, brown, and polar’ and I’d like my URLs to be:
example.com/bears/grizzly
example.com/bears/brown
example.com/bears/polarSimilarly, another category might be ‘apes’, and I’d like URLs:
example.com/apes/gorillas
example.com/apes/bonobos
example.com/apes/chimpanzeesRight now the best I can do is:
example.com/forums/apes/gorillas, etc.
So I want to remove the ‘forums’ part completely.
Thanks for any help!