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.
Deactivate BuddyPress and any other BP plugin. Re-upload theglobalsport theme files like I mentioned previously and check that the WordPress section – posts/pages – are working as expected.
If everything’s working on the WP side, then activate BuddyPress and BP template pack plugin.and run Appearance > BP Compatibility. Only then do you implement the instructions I posted above.
i have same problem. please help.
i delete the buddypress and bb config.php from my server and all bb tables from data base.
why when i want to re install buddypress the instalation wizard not shown?
and when i go to the forums section in buddypress setting to creat Forums for Groups.it shown
this words “
“(Installed) Forums for Groups
“
and the install new group forum button is not shown????
pleas help
== On the sub site when I write a post it does not show up in that site’s Activity Stream (again not desired, I want it to show up). ==
It’s clear now, thanks. Have you contacted @sbrajesh and informed him about the posts in subsite not showing up in that subsite’s activity stream? He should know about this as I agree with you about the functionality you want.
Thanks @mercime. We have a wordpress site and we’d like to integrate the bettercodes.org code with what we currently have. We like its functionality and we’d like to use most of it in our project. We don’t foresee any changes in the functionality only changes to colors, positioning of tabs, etc (css modifications I imagine). So, with deploy I mean implement/integrate and with framework I mean structure/functionality. Many thanks for your reply! 
B. Create a BLANK sidebar-buddypress.php
Open up the blank sidebar-buddypress.php and add the following code:
`
`
Save file.
C. Upload header-buddypress.php and sidebar-buddypress.php to your theme folder in server wp-content/themes/theglobalsport/ at the same directory where your regular header.php and sidebar.php files are in
D. Final note: Copy the style modifications for some BP elements https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste those at the bottom of your theme’s stylesheet, then adjust to taste.
@nsbalgcom You will only need to create two new files, header-buddypress.php and sidebar-buddypress.php
If you’ve revised any of the BP template files transferred to your theglobalsport theme folder in server during the BP Compatibility process, please delete the 6 BP folders transferred to your theglobalsport theme folder in server – /activity, /blogs, /forums, /members, /groups, /register – then re-run Appearance > BP Compatibility again to make sure that you have clean template files.
A. COPY your theme’s header.php and Save As > header-buddypress.php
Open up header-buddypress.php and at the BOTTOM of the file, below other code contained within, add this:
`
Save file.
@joaocarapinha what do you mean deploy the bettercodes framework? could you be more specific?
a problem just recently occurred when changing the first pastebin’s index.php I sent you, to the default version of index.php. The members and few pages stopped working. Is there a fix? or should I just use the previous code? pages were working fine then.
I think WP/BP fixed the code at the set up so the pages worked fine? That index.php pastebin you had previously with the members in the header of code was my main index.php for my theme.
I guess that
@mercime
on the right will be the sidebar.
http://pastebin.com/nd2MtXdL = index.php
The left column will be the news/content/buddypress area, sidebar on right for widgets and everything else. Can you assign the sidebar to the Sidebar (page) widget/coulum. I think I said it right, but what I am saying is that, there’s types of sidebars in my theme theme such as:
Sidebar (page)
sidebar (post)
sidebar (archives)
sidebar (category)
etc
PAGE sidebar will be the most efficient to use on the right.
@mercime wrote: …you’re not likely to see the blog posts from the subsite showing up in the main site’s activity stream at all precisely because of the separate instances
I note: Yes, I understand this and this is what I want and expect. By the way I am running sbrajesh’s. I also run BuddyPress Activity Plus and have turned it off and on on both sites. It does not affect the output.
What I am looking at is notification of new Posts showing up in the Activity Stream of each site. In the main site when I write a Post is shows up in that sites Activity Stream (again this is desired). On the sub site when I write a post it does not show up in that site’s Activity Stream (again not desired, I want it to show up). I would post a screen shot but I don’t know how in this forum…
I am looking to find out why it shows up in the primary site but not the secondary.
Thanks,
~eric
@nsbalgcom before proceeding with the alignment fix, re-upload TheGlobalSport theme files again in your server. Something went awry and the BP Members index.php file should not be at the root of your TheGlobalSport theme folder that you would paste it here as your theme’s index.php file.
Looks like we’d only need to create two files, upload to theme folder and you’re good to go.
Last thing though, where do you want your sidebar to be —
a) in default sidebar on the right
OR
b) sidebar on the left?
@artisantopia you’re welcome. marking this as resolved.
@rafferjr Based on the HTML structure of your theme, you’d need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your admired theme folder in server during the compatibility process.
@mercime everything I’ve copied and paste was taken from the correct file. I was confused with the index.php file as well, but that what what was given.
index.php = http://pastebin.com/JbiEchdi
page.php = http://pastebin.com/5vEEpkVN
footer.php = http://pastebin.com/gZn20UJE
header.php = http://pastebin.com/r13m7W6R
There is no sidebar.php? I think it’s because of the format of my template.
@dadvan Sorry, no public tool/script to do that. You would need to hire a developer to do the migration for you – http://jobs.wordpress.net/
@nsbalgcom do not paste long blocks of code here. Let’s try that again.
Open up your theme’s header.php file, copy all, paste in pastebin.com, click submit, and post the generated URI here.
Do the same for your theme’s (The Global News Theme, right?) index.php, page.php, sidebar.php, and footer.php
Also, something was wrong with your index.php file. It should be of your theme’s index.php and what I saw was the members/index.php file.
@janismo (James) now i’ve got it!
Thanks for your help, man! Now I was finally able to reproduce it. The bug is caused in activity streams were no “load more” button was intended to be shown. I have to Tweak it again, will post it tonight/tomorrow morning but with help from people like you I think we’ll have a pretty “bullet-proof” snippet
!
Thanks a lot, again, will update as soon as I fixed this altogether with the dropdown filter change support. 
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/bloggingnews/
D. Check out the style modifications made in BP Twenty Ten for reference especially with removing the bullets and bringing in the extended width of the BP elements. https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and copy these over to your theme’s stylesheet and adjust as needed.
@jakeyboy1989 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 bloggingnews 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
`
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.
In fact I have gone and checked for you and your theme has been covered on this post:
https://buddypress.org/community/groups/installing-buddypress/forum/topic/where-are-my-sub-menus/
This is the extent of mercime’s help – the code necessary to make bp template files compatible with a given theme and then it’s up to the poster to implement that code in their files. So the work has been done as it were and just needs implementing, if you still haven’t the time to do that then I would suggest you make a slightly better offer 20 euros might be a little more incentive for someone and perhaps post the request in the jobs board group.
> and I don’t know how long it takes.
Then you can’t possibly place a remunerative value on the effort can you – certain ‘offers’ can be considered derisory and perhaps are better not made at all 
I’ll butt out now
but please do have a preliminary read through the codex guides that have been slaved over to provide easy to grasp steps in converting themes – if you have a basic understanding of what needs doing it might well help mercime if she has time to help out.
@mercime here are the files you requested. Here is a my site link: http://nsbalg.com/ssn3 and here is the preview of the demo theme – http://demoserver.pressjunkie.net/theglobalsport/
Hope to hear from you soon regarding how to fully fix my alignment. Sorry the directions given did not help me.
DELETED – do not post large blocks of code here. please follow instructions and paste code to pastebin.com for each file — mercime