You don’t change the files in bp-default theme nor in BP Template Pack.
You only change the 16 files within the 6 folders transferred to your WP theme, Collection, in server.
Download the 6 folders from your collection theme folder in server down to your computer hard drive.
At the TOP of all 16 files , replace:
<?php get_header( 'buddypress' ); ?>
// different do_action in different template files
<div id="content">
<div class="padder">
with the following:
<?php get_header(); ?>
<div id="primary" class="hfeed">
Then change page title header tags from <h3> and </h3> to <h1 class="entry-title"> and </h1> in the 16 template files where appropriate.
At the BOTTOM of all 16 files , replace:
</div><!-- .padder -->
</div><!-- #content -->
// different do_action for each template file
<?php get_sidebar( 'buddypress' ); ?>
<?php get_footer( 'buddypress' ); ?>
with the following (except for registration/register.php)
</div><!-- #primary .hfeed -->
<div id="single-right-sidebar">
<?php if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar('Page Sidebar - Right') ): ?>
<?php the_widget('WP_Widget_Text', 'title=Page Sidebar - Right&text=You could add some widgets in this area.', 'before_title=<h3 class="widget-title">&after_title=</h3>'); ?>
<?php endif; ?>
</div><!-- #single-right-sidebar -->
<?php get_footer(); ?>
with the following for registration/register.php
</div><!-- #primary .hfeed -->
<div id="single-right-sidebar">
<?php if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar('Page Sidebar - Right') ): ?>
<?php the_widget('WP_Widget_Text', 'title=Page Sidebar - Right&text=You could add some widgets in this area.', 'before_title=<h3 class="widget-title">&after_title=</h3>'); ?>
<?php endif; ?>
</div><!-- #single-right-sidebar -->
<script type="text/javascript">
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();
});
});
</script>
<?php get_footer(); ?>
Disclaimer: might work or might not on the first pass. Let me know.