Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `
…
` or `
..
` to `
// Titles Of Respective BP Page Templates //
`, just watch out when you do this in the /activity/index.php page.
Save files.
Yes, that’s the way it’s supposed to look for a default install. As for the message, you can disregard/ignore that for the meantime – that would be resolved in next bbPress version.
Hello Mercime,
Thank you for your support. It works!
I added the shortcode [bbp-forum-index] to my ‘Forums’ page. At first the forum didn’t show up until I remove the ‘Forums’ as the selected page at “BuddyPress > Pages > Discussion Forums > -None-.
Is it suppose to look like this — http://www.backpackventure.com/forums/ ?
Now I’ve a message displayed at the top of WP, ‘The following active BuddyPress Components do not have associated WordPress Pages: Discussion Forums. Repair’
Guess I just ignore it?
Please advice.
@bensonsearch thanks for posting the conflict with FBChat and commenting with BP. Have you checked out the other chat plugins at https://wordpress.org/extend/plugins/tags/chat
Per instruction in BP Codex, add shortcode `[bbp-forum-index]` to Show the forum index/archive or any/mix of shortcodes posted at https://bbpress.org/forums/topic/bbpress-20-shortcodes
Go to dashboard Pages > All and click on “Forums” then add the shortcode/s you prefer.
Start creating forums in dashboard Forums > New Forum and add topic/s to forums.
Hello,
It doesn’t work as well. I tried buddypress 1.5.5 on another domain. This time I install WordPress 3.3.2 manually via FileZilla.
I still encountered the same problem while installing ‘Site Wide Forums’ (bbPress plugin).
This is my site – http://www.backpackventure.com/
When I load http://www.backpackventure.com/forums/ , the page says ‘The forums component has not been set up yet.’ (I already setup during the buddypress installation)
And I get a blank page for the forum I installed – http://www.backpackventure.com/forums/forum/discussion/
Anyone has the similar problem?
Please help.
Hello there,
I am new in this forum.
I have installed buddypress to my second subdomain as http://khmertrips.com/community/, so anyone know that, where could I found code or RSS to display do *Activities stream* of buddypress to my homepage of http://khmertrips.com/travel/ as i use both subdomain in wordpress soft.
Thanks/Kunthea
Based on the HTML structure of your theme, you need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your Neu theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your theme folder, replace all of them for a clean slate by deleting the 6 BP folders in server – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.
Download the 6 clean BP folders to your computer hard drive. We’re going to use the basic HTML structure of your theme.
A. At the top of each of those 16 template files I linked to above, replace
`
with
`
Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `
` or `
` to `
`, just watch out when you do this in the /activity/index.php page.
Save files.
What could very well be causing your issue is that you used a webhost script to install WordPress in the first place and it could very well be causing issues with your BuddyPress installation – see https://codex.buddypress.org/getting-started/before-installing/#system-server where “WordPress should be installed manually i.e. via FTP, cpanel, etc. and NOT via webhost scripts which bring about numerous issues when BuddyPress is activated.”
Just realized that this properly is a wordpress related problem, but if anyone has any suggestions I’ll take them anyway 
Claus
This is now answered at: https://buddypress.trac.wordpress.org/ticket/4195
download this plugin
https://wordpress.org/extend/plugins/buddypress-share-it/
open the code source and analys it : )
line 17 of registration/activate.php in your theme.
https://buddypress.trac.wordpress.org/browser/trunk/bp-themes/bp-default/registration/activate.php#L17
Their is no core supported way to customise it at this stage but their are tickets discussing the best method for it.
SEE: https://buddypress.trac.wordpress.org/ticket/2125
Their are plugins though that help create a new login page
eg. https://wordpress.org/extend/plugins/theme-my-login/
“Do you still know of a way to change that redirect for wp-admin?”
Yep, Let me forward you to a helpful codex page (they explain it better than i can) https://codex.wordpress.org/Plugin_API/Filter_Reference/login_redirect
Threaded comments (activity comments) is built into BuddyPress Default theme.
Threaded comments (blog comments) is built into WordPress.
quick google search: http://idratherbewriting.com/2009/05/31/wordpresss-threaded-comments/
@hnla It sounds like you might have found a bug.
@djpaul The change you’re thinking of is here: https://buddypress.trac.wordpress.org/changeset/5552
Here is my code
This my code in functions.php
function user_has_avatar() {
global $bp;
if ( !bp_core_fetch_avatar( array( 'item_id' => $bp->loggedin_user->id, 'no_grav' => true ) ) )
return false;
return true;
}
I try to check this in header.php,
// test one with bp_get_user_has_avatar function
global $bp;
if( !bp_get_user_has_avatar()) :
// echo html message warning
endif;
// test two with user_has_avatar function
if( !user_has_avatar() ) :
// echo html message warning
endif;
bp_core_fetch_avatar( array( ‘item_id’ => $bp->loggedin_user->id, ‘no_grav’ => true, ‘html’=>false )
return this string :
http://localhost/wordpress-buddypulse/wp-content/plugins/buddypress/bp-core/images/mystery-man.jpg
and not false like describe in buddypress docs ( when no_grav is true function will return false if no avatar is added)
bp_get_user_has_avatar() is used in memberssingleprofilechange-avtar.php , mybe i need to call a funtion to load the data of current member or somthing like that…
Thanks advance @shanebp for help 
Hi Mercime and other php gurus 
I figure this is only a small tweak of the code, but I’m unable to fix it as I’m a NooB to wordpress and .php in particular. Do you have any idea about how to fix this issue?
Sorry to be pushy, I am just really anxious to lauch this buddypress feature to the site I’m building to my son and his like minded friends 
Regards and thx in advance.
Vus
bp homepage plugin as in https://wordpress.org/extend/plugins/bp-profile-as-homepage/ or https://wordpress.org/extend/plugins/bp-my-home/?
== the only problem is that I want users to be able to go to the hompage again after they’re login ==
Not clear. You mean a member cannot go to the homepage after they land in their profile page?Have you tried contacting plugin author about this?
I can only speak for the bp-default theme:
– default blog pages == index.php https://buddypress.trac.wordpress.org/browser/tags/1.5.5/bp-themes/bp-default/index.php
BP Corporate might just have a home.php page which trumps the index.php page per template hierarchy
– search results page == search.php https://buddypress.trac.wordpress.org/browser/tags/1.5.5/bp-themes/bp-default/search.php
== I’m just trying to find out out to attach categories or tags to BuddyPress posts. ==
The same way you attach categories or tags to WordPress Blog Posts in the backend
Hi, @landwire, thanks for you comments, I’ll update the snippet within this week. I don’t want to go off topic a lot but you could accomplish that task by AJAX: http://tomsbigbox.com/wordpress-load-more-posts-on-page-scroll/ Hope it helps! Regards
You might be better off using wp_login_form()
(https://codex.wordpress.org/Function_Reference/wp_login_form) which has a redirect parameter (see codex link above)
Or, would you prefer to use wp-login.php?
Buddypress is simply? a plugin that runs on wordpress, aspects such as registration and users are managed by wordpress rather than BP.
Yes, that does it. now registration works, I would not have looked there for it and was not aware wordpress and buddypress are so interwoven. Thanks for your quick answer Mercime.