@dasteralo2 First, deactivate BuddyPress. you’ve got to make sure that your WP multisite installation is working before activating BP. Now create a new blog w/o BP and see if your new blog has been created.
– If no subsite is created, then resolve the multisite issue first at the multisite forum https://wordpress.org/support/forum/multisite
– If a subsite is created, then activate BuddyPress, go through the Installation Wizard and choose BP Default theme for the meantime, and create a new blog.
Yeah, I sure did. Nothing changed either. Still facing the same issue. Such a pain. I suppose I’ll have to contact the author. Thanks again @mercime.
This is currently not possible with BuddyPress
9087877Inactive
If you don’t want the bar showing up for non-logged in users then go to dashboard/settings/buddypress/settings and uncheck show the toolbar for logged out users.
Well, I went ahead and erased the “registration” page Buddypress created upon install. I created a new page (same name) and linked it from the Buddypress settings page. It´s working fine now..!!
This is weird, I just hope it won´t happen again. i just wonder what could cause that…
Thanks anyhow for the help and the time.
best,
Erik.
H again. No, no edits. It just suddenly stopped working. If I swith to the regular Buddypress theme it woks fine, but once I switch back to my current theme (Mingle) the registration process goes south… Funny thing is that registration was working ok with Mingle an hour ago…!!
Hi,
Sorry for the late reply, I managed to sort it.
It was because the theme (starkers) appeared to not have the registration functions from what I presume. I have downloaded a similar skeleton theme and it works perfectly! 
Thanks!
9087877Inactive
That is a hard one with the limited info. Have you made any custom code edits anywhere you may have forgotten to mention?
B. At the bottom of the same 16 files, replace:
`
`
with the following (except for registration/register.php):
`
<?php if (get_option_tree('blog_layout_sidebar', '')) {} else {echo '
‘;}?>
`
with the following for registration/register.php:
`
<?php if (get_option_tree('blog_layout_sidebar', '')) {} else {echo '
‘;}?>
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/Paediatric/
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.
Final note: not sure whether the options re sidebar locations will work in BP template files with your theme. Some themes have options that work, some themes not at all. Make the top and bottom revisions with /members/index.php to start and see how that works out first.
@benzine You need to change 16 template files within the 6 BP folders transferred to your Paediatric theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your Paediatric 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:
`
<?php if (get_option_tree('blog_layout_sidebar', '')) { echo '
‘; } else {echo ‘
‘;} ?>
<div id="post-” >
`
Then, in each of 16 files, delete the BP Templates’ Page titles where found (usually found in index.php files within BP Template folders) since the BP titles are generated automatically during the BP Installation Wizard and you don’t want duplicate titles in one page. Be careful with the activity/index.php file.
Save files.
@michaelgossling
– After you activated BuddyPress, did you go through the Installation Wizard? https://codex.buddypress.org/getting-started/setting-up-a-new-installation/installation-wizard/
– After you activated the BP Template Pack plugin, did you go through the process via dashboard menu > Appearance > BP Compatibility and finish Step 3 (match HTML structure of theme with BP templates)?
Hi, thanks for your kind reply. I appreciate, but that completely removes the adminbar (including the Buddybar). I want to remove the WORDPRESS admin bar alone from non admins, but NEVER the Buddypress adminbar, which I want to have visible at all times…..
Possible?
Thanks!
9087877Inactive
I can understand how some people could get confused to what the best solution is because you have bp-album, bp-media, bp-gallery, bp-media component etc. and it would be awesome if the most fully featured of the media plugins was either integrated or somehow auto-suggested in the BuddyPress install. Anyway, that is just my opinion, and I think it would save a little confusion for those that are new to BuddyPress.
== the duplicate wp_head is not really giving me serious issues (apart from that redirect problem at the moment), however it’s wrong to have repeated js and css in a page ==
@substrato Re duplicate wp_head, how did you create header-buddypress.php? I do it by opening up header.php file and Save As > header-buddypress.php then at the bottom of that new file, add the necessary HTML tags which are not available in the BP templates. A possibility could be that you replicated wp_head in your our header-buddypress.php which I assumed you checked already?
@rodtrent I placed it in the bp-custom.php and in bp-loader.php Line 482 at the end of the function `setup_actions()`
@helllllpmeplease I can see the activity comments in the two page links you posted in IE8, then when I removed styles on the pages in FF15 the unstyled posts are there. This means that something’s gone awry with the BP compatibility process.
Download permalink.php from your server wp-content/themes/clearline/members/single/activity/permalink.php to your computer hard drive. Open it up with a text editor like Notepad and delete everthing within. Copy the following and paste it to your permalink.php file
`
`
Save permalink.php and upload to wp-content/themes/clearline/members/single/activity/ folder. Clear cache and check it out.
Great idea @r-a-y , will try it tonight , I would like to use it for custom post type answers
I simply went to the buddypress/bp-loader.php file and pasted the code below at the end of the file…
Try adding this code snippet to your wp-content/plugins/bp-custom.php:
remove_action( ‘bp_template_redirect’, ‘bp_redirect_canonical’, 2 );
This will remove the canonical redirect hook that might be causing you some issues.
I’ve developed my own theme, I just copied the files provided into my own theme, then added a simple div tag in header-buddypress and closed in footer-buddypress to encapsulate it inside my existing css blocks
if I don’t create these two files buddypress will look funny
sorry for the confusione about my sentence above, I meant I’m not using a third party theme, I’m developing my own and embedding buddypress into it with BP Template Pack
other than the issues mentioned above, my buddpress and wordpress installation are working fine; the duplicate wp_head is not really giving me serious issues (apart from that redirect problem at the moment), however it’s wrong to have repeated js and css in a page
Good luck. I use BP Gallery myself 
@aces I placed this line in my bp-custom.php, but that did not help….
I don’t know how to thank you !
Have A REAL nice time ! 