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 //
`, AND move this to above `
Save files.
@spuntotheratboy I upgraded an installation from BP 1.2.5 / WP 3.0 but I did it step by step, watching up for WP upgrades as well as the BP compatible upgrades.
The first thing I did before the first upgrade was to change to bp-default theme. Then I deactivated the BP-compatible plugins, then the other WP plugins plus renamed bp-custom.php and renamed the mu-plugins folder, then changed to Twenty Ten theme and deactivated BP.
Version by Major version manual (s/FTP) upgrades of WP and BP per compatibility of both and stopping to check the site once in a while to check if BP components are working as expected. For reference re compatibility of WP/BP versions, check out https://codex.buddypress.org/releases/
Are you using the bp-default theme? If you are, are you using a customized homepage template?
Try disabling all your plugins except BuddyPress and see if you are able to see the register link afterwards.
If you’ve created a child theme of bp-default, copy and paste the /activity/index.php template to your child theme.
Next, open up this file and remove the various li entries for All Members, My Favorites and @mentions. This should remove the tabs from the activity directory page.
Bump
@sciencefiction68 glad it’s working out for you, good news 
Marking this as resolved.
The link to create a group (if group creation is enabled) is available on the groups directory page in bp-default theme. If you want to add the link to your custom theme, the relevant code is in this line https://buddypress.trac.wordpress.org/browser/tags/1.6.1/bp-themes/bp-default/groups/index.php#L21
@shawn38, The site was using a blog from wordpress and the theme was well liked and buddypress was just a test at first. It seemed to work out pretty well for what the site needs. I will keep this in mind for any other future buddypress projects. The !important seemed to work. Thanks.
@karmatosed, Thanks for your input and will be using that as well.
@mercime, Thanks but, the way I aligned it isn’t proper. I added styles to each element because when I use the .bpcontent div it was only fixing the Members Directory page. The rest of the pages ended up still being out of alignment. Your post makes sense and I should have noticed that but, I didn’t. Thanks for that one. The sidebar-buddypress,php is no longer in use or shouldn’t be. I am using or planning on using my themes sidebar.php. This made it much easier when making the theme compatible. I am going to go back and fix the css and see if my alignment issue works out a little easier.
Thanks for everyones input, I am sure I’ll be back.
HI. Thanks for your help. I did ALL the things you suggested in your message and that particular string was still in english… I finally found it, you were right, it was in the theme/members/single/delete-account.php location. There seems to be a problem there because this file is not affected by the translated file. I finally did the language changes manually and it worked…
Thanks again for al the help.
Thanks to you!!
Its working just perfect now!::_:)
Ola !
You have 2 translation when running BP. One for WP and one for BP
And many plugins using their own mo file. In this case, the translation is in a “lang” or “languages” folder delivered with the plugin.
The wp translation is called es_ES.mo and is in wp-content/languages/es_ES.mo
The BP mo had to be in this same directory wp-content/languages/buddpress-es_ES.mo
You have also to declare your site language in wp-config.php (define(‘WP_LANG’,’es_ES’) and you have to set this, if not already done, in WP’s settings.
If all this is correctly made, all WP/BP strings should be in spanish. If despite correct settings, you have strings in english, it’s probably because you’re using a theme or a plugin with uninternationalized strings.
The template pack has nothing to do with your problem. bp-template-pack is a kind of guide to help you modify/upset non BP compatible themes. The plugin doesn’t need to be in spanish.
To find exactly where your untranslatable strings are, i suggest you to open buddypress/bp-languages/buddypress.pot and look above the word in english, the file name where the word is used. So simple as that ! 
EDIT: the concerned file is bp-themes/bp-default/members/single/settings/delete-account.php
If you use a custom theme for your install, you have to use the same path:
your_theme/members/single/settings/delete-account.php
In this file, you must have this line 54:
`
`
Have you translated the theme and your template pack – to me it seems that something would not be being translated so you’re maybe only picking up one of the strings. Maybe the template pack isn’t translating?
Hi. I am using a custom theme…. I am using a template pack for my (Elegantthemes) WordPress theme.
Hi, Just to check are you using the default BuddyPress theme or are you using a custom theme?
@nickyernstsen Pages > Add New, choose the full-width template of your theme, if any, add title of the forum, then post the shortcode `[bbp-forum-index]` in text area or any or a mix of the available shortcodes https://codex.bbpress.org/shortcodes/
@kissandim didn’t get the notification. Just in case you haven’t found the solution yet, just move $profilelink before the $menu, therefore the last three lines should look like this:
$menu = $profilelink . $menu;
return $menu;
}
@cpinsd if you have more than one custom menu in your theme, find out the ‘theme_location’=>’???’ of that specific wp_nav_menu. For example, the location is mamamia then the code would be
// Filter wp_nav_menu() to add profile link in a specific custom menu e.g. mamamia
function mme_nav_menu_profile_link($menu, $args) {
if( is_user_logged_in() && $args->theme_location == 'mamamia' ){
$profilelink = '<li><a href="' . bp_loggedin_user_domain( '/' ) . '">' . __('My Profile', 'yourtheme') . '</a></li>';
$menu = $menu . $profilelink;
}
return $menu;
}
add_filter( 'wp_nav_menu_items', 'mme_nav_menu_profile_links', 10, 2 );
@karmatosed, that’s much better… 
@valuser, thanks! That works–but I would change “Admin Only” to what Tammie suggested. The “member” would have to assume that they are the “admin” which isn’t clear. I guess a tooltip would help.
Now, if only it worked for my theme using the Template Pack, too, not just BP Default, that would be awesome!!! One thing at a time…
@juanmaguerrero — the activity-loop is part of the theme, and even if possible, it wouldn’t be appropriate for a plugin to replace it en-masse.
Different themes may implement different activity-loops (different markup, etc.) — so, your code (as a plugin) couldn’t possibly replace successfully in all possible cases.
If it’s not possible to implement your plugin hooking onto pre-existing actions, then perhaps it’s not appropriate as a plugin, and better released as a code snippet, or as part of a new theme.
Really as small as the loop is anyway you should just create a function that will check if activity-loop.php is present and if so it will overide that activity-loop.php with the complete activity-loop.php file you include with the plugin. Think of how child themes override the bp-default theme. Its kinda the same process.
@niaconcepts, it is in the plugins folder. NOT the themes folder. plugins/buddypress/bp-themes/bp-default…
Thanks @mercime… can you explain what alignment code to change in the template file?
This is a custom site built as a child from the default BP theme.
I have tried following the guide but can’t seem to figure out what is wrong with the structure of the code.
page.php = http://pastebin.com/Z8zZimye
register.php = http://pastebin.com/bBfHa2DV
sidebar.php = http://pastebin.com/C6EUdPeX
member.php = http://pastebin.com/UATUWRiB
header.php = http://pastebin.com/WammXDw0
Also the sidebar should be on the right but instead is pushed down the page on any buddypress page. Any ideas why?
If you need any others then let me know. Thanks
B. At the bottom of the same 16 files, replace:
`
`
with the following (except for registration/register.php):
`
`
with the following for registration/register.php:
`
jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});
`
Save files.
C. Upload the 6 BP folders containing the 16 files you’ve just revised to your server wp-content/themes/pinterest/
D. Copy the style modifications made in BP Twenty Ten at https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste to your theme’s stylesheet. Adjust to taste.
@sciencefiction68 You need to change 16 template files within the 6 BP folders transferred to your pinterest theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your pinterest theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /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 the following:
`
Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `
` or `
` to `
`, AND move this to above `
Save files.
@twc01 Initial scan shows that you need to revise 16 BP template files. If you still want to proceed, open up your theme’s header.php file with a text editor, copy all, paste in pastebin.com, click submit and post the generated URI here. Do the same for your theme’s page.php, index.php, sidebar.php and footer.php files.
Have you declared “testing” as a child-theme from within style.css ?
If you simply renamed bp-default when throwing it into the wp-content/themes/ folder, it is normal that you have a bad issue, because you’re using the same theme twice.
bp-default theme folder has to be in the buddypress/bp-themes/ directory. 