Here’s a related thread — although, about post urls rather than member profile URLs, in the activity stream. https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/changing-wordpress-permalinks-breaks-old-buddypress-activity-updates-links/
Storing the post URL independent of the permalink structure, is a simple enough fix. It’s harder to think of a solution that could deal with 3rd party plugins (or manual) changes to the member URL structure (other than the core BuddyPress being enhanced to support a ‘permalink’ settings for BP members / components similar to those applied by WP to posts, categories, etc.)
Using phpmyadmin.. Export your tables to file on the source site, and import from that file on the destination site.
There are plenty of tutorials on moving a WordPress site.. Have a Google.
@keats18 Per scan of your theme’s HTML structure, you’d need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your Akita 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.
A. At the top of each of those 16 template files I linked to above, replace
`
`
with
`<?php get_header();
themeblvd_main_start();
themeblvd_main_top();
themeblvd_breadcrumbs();
themeblvd_before_layout();
?>
You can use the filter bp_get_group_join_button to modify the class.
Have a read up on WordPress filters and actions.
You can put your filter in bp-custom.php or functions.php.
That said, I’m not sure what simply adding a class ‘confirm’ will achieve — is there some Javascript configured that will auto display a confirmation popup if the button has a class of ‘confirm’ added to it?
I haven’t solved the problem yet, Here’s were I’m looking https://codex.wordpress.org/Function_Reference/add_filter
Here’s were I think the filter needs to be added?
`
* @uses bp_insert_activity_meta()
* @uses apply_filters_ref_array() To call the ‘bp_get_activity_action’ hook
*
* @return string The activity action
*/
function bp_get_activity_action() {
global $activities_template;
$action = $activities_template->activity->action;
$action = apply_filters_ref_array( ‘bp_get_activity_action_pre_meta’, array( $action, &$activities_template->activity ) );
if ( !empty( $action ) )
$action = bp_insert_activity_meta( $action );
return apply_filters_ref_array( ‘bp_get_activity_action’, array( $action, &$activities_template->activity ) );
}
`
On my Registration page, when the “Complete Sign Up” button is pressed in the “Create An Account” form, the registration page just reloads. What is happening here? My site is http://www.sewconnected.com. Thanks.
1. Which version of WordPress are you running? 3.4.1
2. Did you install WordPress as a directory or subdomain install? I think subdomain install
3. If a directory install, is it in root or in a subdirectory? N/A
4. Did you upgrade from a previous version of WordPress? If so, from which version? 3.4.1
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes
6. Which version of BP are you running? 1.6.1
7. Did you upgraded from a previous version of BP? If so, from which version? No
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? No other plugins.
9. Are you using the standard BuddyPress themes or customized themes? Mingle Buddypress Compatible theme
10. Have you modified the core files in any way? No
11. Do you have any custom functions in bp-custom.php? No
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Yes, came with it.
14. Which company provides your hosting? mdd hosting
15. Is your server running Windows, or if Linux; Apache, nginx or something else? Litespeed.
Some progress in debuging…
When i insert
[ sourcecode language=” php ” ][ /sourcecode ]
and open the post for editing, i get [ sourcecode language=”””” ][ /sourcecode ]
The word php disappeared and the place is double quoted !
Then i save these changes and the code cames up, but without colored synthax.
This is a first step on the right way. Colors are missing but code is showing correctly at 90%
Single quotes became curly for ex.
Probably backpress kses filtering.
I tried to deactivate BP’s filters bp_get_the_topic_post_content wptexturize and bp_get_the_topic_post_content bp_forums_filter_kses, but this changed nothing.
I posted on the support forum, but it seems still for a long time ago. 
https://wordpress.org/support/topic/plugin-syntaxhighlighter-evolved-conflict-with-buddypressbbpress?replies=1#post-3112451
@chouf1
– I am using a child theme of bp-default theme, a port of apeatling’s design of BP 1.0 BuddyPress theme https://buddypress.trac.wordpress.org/browser/tags/1.0/bp-themes/bphome/screenshot.png
– Also that IS screenshot of the BuddyPress Group Forums new topic page. You can see the Group Name and Group Admins above the forum topic 
But going back to the syntax highlighter, I do see the issue now if I post HTML/PHP code just like yours instead of CSS which I posted above and used lately. I was able to find a work-around by using `[ sourcecode lang=”title” ] the code [ /sourcecode ]` (just remove the spaces before ahd after the brackets) Result: https://mercime.files.wordpress.com/2012/08/bp161-shevolved-php.png
@chouf1 site is private, but I took a screenshot of the group forum topic I made for you as well as the screenshot of the config settings. I post code usually e.g.
[ sourcecode lang=”css” ] the code [ /sourcecode ]
or [ php ] the code [ /php ]
P.S. had to put the spacings between brackets or else it won’t show up here.
http://myplayfulself.com/wordpress/ Just downloaded today. Neither the Registration or the Activate selections show up on the bar. I don’t know how people are supposed to register or what and Activation Code is?
I have a plugin called BP Verified and you could use it identify a normal editor acount as a site “admin” not the WordPress install admin. This would draw attention away from the real admin account.
I’m not seeing how someone can tell your an admin if the username is not admin. if you change the username to something else the account will just look like any other account. If you are so concerned about someone breaking into your site lock down the wp backend to your home ip address or google some of the options to protecting WordPress.
Also backup database regularly so you can just reinstall if hacked.
Can one install WordPress Multisite after Buddypress is already installed? Would it cause problems? I know you usually install Multisite first.
I ‘may’ not have the right end of the stick with what you are looking to do but this:
`wp_enqueue_script( ‘dtheme-ajax-js’, get_template_directory_uri() . ‘/_inc/global.js’, array( ‘jquery’ ), bp_get_version() );
`
You can hook into that ‘array’ if you want to.
https://codex.wordpress.org/Function_Reference/wp_enqueue_script
$deps
(array) (optional) Array of handles of any script that this script depends on (scripts that must be loaded before this script). false if there are no dependencies. This parameter is only required when WordPress does not already know about this script.
Default: array()
Users who receive a private message are unable to reply to it. They can enter in a message into the text box (below the message they received from another user), but once they click “Reply”, nothing happens (the waiting circle keeps revolving indefinitely). The user they were trying to send a message to doesn’t receive anything either.
I’ve installed the latest version of Buddypress and WordPress.
Any ideas on what’s causing the problem? Or how I can get the feature up and running again?
UP
I have same problem… ALL link redirect to homepage! this after update Buddypress to 1.6.1 WordPress to 3.4.1 BBpress to 2.1.2
i am desperated… thousand of users can’t use my site… please help me please
Hey, I have browsed through many forums but can’t seem to find an answer. When a user registers to my site, activation e-mails are not being sent. I have tested it myself. I checked junk folders and tried it on Yahoo and Hotmail. I tried plugins such as Mail From and WP-Mail-SMTP. I just set-up the site so no user has ever been able to register. I am using the current version of wordpress and buddypress. Any help?
@boone
What changed with bp_options_nav?
bp_options_nav = ‘new_name’;
no longer works, neither does position
EDIT: nvrmd found your blog post http://bpdevel.wordpress.com/2011/09/05/manually-modifying-single-group-navigation-in-bp-1-5/
looks like codex needs and update.
for those searching:
`$bp->bp_options_nav[$bp->groups->current_group->slug] = ‘New Name’;`
As you can see on the bbpress forums, like JJJ’s account (http://bbpress.org/forums/users/johnjamesjacoby/) there is the ability to merge your profile info and forum info (created, favourites, etc) onto the same page.
This is what I want to do with my buddypress. How do I go about doing this?
I also want to be able to put all the editing of settings onto the same page, namely the edit.php, change-avatar.php, and all the settings.
Unfortunately it’s not just a matter of copying and pasting these files into each other (tried it!). The text moved alright, it’s just that the actions like uploading the avatar or saving a setting don’t want to save. I know where all the files are, I just don’t know what to do. As you can see, I may need a bit of help 
I am using Buddypress 1.6.1, WordPress 3.4.1, my own theme – you can check out my website with my profile at http://netballscoop.com/members/netballscoop/
Simpler way is to install wordpress access control, this adds a option to every page to make it avalible to be viewable by only vistitors, logged in users and even has a age control on it, you can all set a redirect page incase somone types in the url as this will also remove any page which is hidden from the viewer type from the menu, check it out its awesome
That is a core feature in the WordPress admin. Go to settings > BuddyPress
Wordpress 3.4.1 + buddypress 1.6.1 + bbpress 2.1.2
After change Mysql password and after change wp-config.php and bb-config.pbp with the new password i can’t open any page of my site. I can click on any voice of menu or in any discussion link but alwais come back on home page. The database connection work good because i can login me, i can disable all my plugin so the connection is good!
What i can do?
thank you
Not a single reply yet. Can someone point me in the right direction?
Here’s a little more info that further clarifies:
I’m hoping to use the S2 Member and Buddypress plugins for WordPress to manage volunteers and members at our arts cooperative and website. S2 Member seems well suited for registering both paid members and volunteers (free users) while Buddypress adds the social features needed to help our people work together.
S2 Member had me convinced of easy integration with Buddypress, but this has not exactly been the case. S2 Member Registration fields appear in the Buddypress registration form, but I’m having the following issues
1. Buddypress profile fields allow users to choose if fields should be visible in their profile, or allow admins to set a default visibility for each field. Can I implement this for fields created in S2?
2. Buddypress profile fields are linked to a search for other users that share the value of that field. I had originally thought this would be perfect for a membership directory that categorizes member and volunteer skills, but not sure how to implement a search that works with both types of fields.
3. S2 does not come with it’s own Member Directory, a feature that should be essential. It is a known issue and common complaint, for which the developers have provided some pointers in the right direction, but no comprehensive code that would integrate options into Buddypress. A membership directory is the most essential aspect to our site, but I’m confused as to how proceed, given the limitations of both plugins.
Hello,
this is my website : http://chrysmotion.com/social/
I’m using the BP 1.5.7 and have updated the adminbar to the 1.6 version ..
Well the trouble is that when a Subscriber logs-in .. And clicks on the Dashboard link in the Admin-Bar it gets him to a ‘Server Error’
So I would like to remove the ‘Dashboard’ menu and just get rid of it ….
I’m already using this code to remove the wordpress logo :
`
function kh_remove_wp_logo() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu(‘wp-logo’);
}
add_action( ‘wp_before_admin_bar_render’, ‘kh_remove_wp_logo’ );
`
Can you please help me ? (like the way you removed it here ? )
Hello,
this is my website : http://chrysmotion.com/social/
I’m using the BP 1.5.7 and have updated the adminbar to the 1.6 version ..
Well the trouble is that when a Subscriber logs-in .. And clicks on the Dashboard link in the Admin-Bar it gets him to a ‘Server Error’
So I would like to remove the ‘Dashboard’ menu and just get rid of it ….
I’m already using this code to remove the wordpress logo :
‘
function kh_remove_wp_logo() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu(‘wp-logo’);
}
add_action( ‘wp_before_admin_bar_render’, ‘kh_remove_wp_logo’ );
‘
Can you please help me ?