Published on September 27th, 2015 by Akawey
Hello,
Ps all my users’ profile pages return a 404 error page.
the url structure is http://mysite.com/forum/user/USERNAME
Only my admin profile page shows and even if I make another user admin, their profile page still returns the 404 page.
It’s a new site and just a few users are registered for testing.
I’ve followed an old topic on this and there’s no solution, so I have raised this one.
Thanks in anticipation.
Published on September 27th, 2015 by VeeLow
BuddyPress support sent me over here with this question: I’m using WP, TwentyFourteen theme, BuddyPress and bbpress all up to date.
I get notification alerts whenever I reply to a topic reply I’ve started in a forum. Is this a is feature, or a bug? It seems like a bug.
It seems to happen only when I reply to a reply, in topics I’ve started (though only I have started topics.) So, for example, the notification text will read “You have one new reply to Example Topic Title from Example Poster”–when in fact, what’s happened is that I, not Example Poster, have replied to E.P.’s post in my topic thread.
The other thing that makes me think it might be a bug is that when I go to my profile, where it stores all “read” notifications, none of these incorrect notifications appear.
Any ideas? Thanks!
Published on September 26th, 2015 by myndphunkie
Hi All,
I am currently working on a private site which uses WordPress + Buddypress + bbPress.
The forum posts do not have the line spacing the way I want it.. Basically it doesnt put a nice line break in between the paragraphs.
I have used the search feature on here and google, and have tried the following:
.post p {
line-height: 1.5em;
padding-bottom: 15px;
}
AND
.bbp-reply-content p {
margin-bottom:10px;
}
I think there were a couple of other things I tried, but to no avail.
I am using the TinyMCE visual editor plugin, however, I have disabled this and the issue still exists.
I’d like to think I can navigate the CSS reasonably well using firebug, but in this case, I just can’t find where the issue is.
Am hoping someone can take a look (i’ll supply login/pass for those willing) to see where I’m going wrong?
Note: I am using my own custom theme designed in Template Toaster. I have a bbpress.css file in my theme folder under <theme>\css
Published on September 26th, 2015 by nikhilnaik
Hello all,
I wanted to seek help in modifying the following piece of code. I have a site with buddypress groups inside which I have bbpress forums for the respective groups. I want the users of the group to be automatically subscribed to the forums within that group. I tried the following code:
add_filter( 'bbp_get_user_subscribe_link', 'invert_get_user_subscribe_link', 10, 4 ); //invert forum subscription
add_filter( 'bbp_is_user_subscribed_to_forum', 'invert_is_user_subscribed_to_forum', 10, 4 ); //invert forum subscription
add_filter( 'bbp_get_forum_subscribers', 'invert_get_forum_subscribers' ); //invert forum subscription
add_filter( 'bbp_is_user_subscribed', 'invert_is_user_subscribed', 10, 4 ); //invert forum subscription
function invert_is_user_subscribed($retval, $user_id, $object_id, $subscribed_ids) {
if (get_post_type( $object_id ) == bbp_get_forum_post_type())
return !$retval;
else
return $retval;
}
function strContains($needle, $haystack) {
if (strpos($haystack, $needle) !== false) {
return true;
} else {
return false;
}
}
function invert_get_user_subscribe_link ($html, $r, $user_id, $topic_id) {
if (strContains( "bbp_unsubscribe", $html )) {
$html = str_replace("bbp_unsubscribe", "bbp_subscribe", $html);
} else {
$html = str_replace("bbp_subscribe", "bbp_unsubscribe", $html);
}
return $html;
}
function invert_get_forum_subscribers( $users ) {
$args = array('fields' => 'id');
$all_users = get_users($args);
$send_to_users = array_diff($all_users, $users);
return $send_to_users;
}
function invert_is_user_subscribed_to_forum( $retval, $user_id, $forum_id, $subscribed_ids ) {
return !$retval;
}
But there is a problem. Using the following code leads to the user getting subscribed to all the forums of all the groups (even those which they aren’t a part of). I just want them to be automatically subscribed to those forum topics created inside the group which they are a part of. Kindly help me in getting this right.
Thanks!
Published on September 26th, 2015 by xard
How to make that at a certain number of answers the subject shared on pages? Otherwise too long subject which should be scrolled long down turns out.
Как сделать, чтобы при определенном количестве ответов тема делилась на страницы? Иначе получается слишком длинная тема, которую приходится долго прокручивать вниз.

Published on September 25th, 2015 by tylerkroff
I’ve switched between about 5 different themes, trying to install bbpress with each one. Each time, the result is the same. I get a message saying that bbpress was installed, but when I try to go back to the WordPress dashboard, I just get a completely white page. I can’t even navigate back to delete bbpress, so I have to do it manually through FTP.
Right now I am using the Genesis Framework theme, but the same problem has happened with the default themes (Twenty Twelve, Twenty Thirteen, etc.)
Any ideas what it might be?
My website is http://www.poorpilots.com/
I am using the latest version of WordPress.
Published on September 25th, 2015 by Emineminero
Hi, i would like to add to my newsletters and also add a google ad with “Suscribe to this forum”.
How can I do this? Is there any url or paramater that is used when someone clicks on “Suscribe”?
Published on September 25th, 2015 by wpfundi
WP version: 4.3.1 multisite
BuddyPress version: 2.3.3
bbPress version: 2.5.8
I have been trying to migrate BuddyPress legacy forums to bbPress following the instructions on this link https://codex.buddypress.org/getting-started/guides/migrating-from-old-forums-to-bbpress-2/
But the migration/import is not going well, after the process:
1) Topics are missing
2) Replies are missing
And during the process I can see “No topics to convert”, No replies to convert.
When I check the database I can see wp_bb_topics etc.
What am I doing wrong?
Thank you in advance.
Published on September 25th, 2015 by joviyach
Forgive me if this is already out there somewhere, but I was wondering how to go about changing this message to say something else?
Is there a front-end way to do this, or is it something in a .PHP file somewhere that needs to be edited?
Thanks in advance.
Published on September 25th, 2015 by ShawnSauce
When searching forums, the search returns no results although there are category names that I know match the search.
Any Ideas?