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.
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/wp-clearvideo/
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.
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 wp-clearvideo theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your 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
global $wp_query;
$postid = $wp_query->post->ID;
if ( get_post_meta( $postid, ‘post_featpages’, true ) == “Yes” ) { ?>
‘,’
‘); } ?>
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.
Do you have a test/development site? Are you able to deactivate all plugins other than BuddyPress, switch to the twentyeleven theme, and see if it still occurs?
@andrearessell … then you also add this to your theme’s functions.php file:
// Remove classes in custom menu list
add_filter('nav_menu_css_class', 'mme_css_attributes_filter', 100, 1);
add_filter('page_css_class', 'mme_css_attributes_filter', 100, 1);
function mme_css_attributes_filter($var) {
return is_array($var) ? array_intersect($var, array('current-menu-item')) : '';
}
// Remove empty classes in custom menu list
function mme_remove_empty_classes($menu) {
$menu = preg_replace('/ class=""| class="sub-menu"/','',$menu);
return $menu;
}
add_filter ('wp_nav_menu','mme_remove_empty_classes');
Thanks! My fingers are crossed that I did this correctly.
There were 4 index.php’s
http://pastebin.com/VgMReg1z
http://pastebin.com/1pP8umyh
http://pastebin.com/yYGnZZ7N
http://pastebin.com/LqcEqC9g
@floridabeautiesinhd Open up your clearvideo theme’s header.php file; copy all code; paste to pastebin.com; click submit; and post the generated URI here. Do the same for your theme’s index.php, page.php, sidebar.php and footer.php files.
Got to see what’s going on. Site url? Test username and password?
@ed161718 I will address your question at the link you posted above so we have one forum topic about easel woes.
Thanks for the help, but unfortunately that didn’t do the trick. Any other recommendations?
I have a similar problem using the theme “easel” as well. Following your instructions to @owen_a ‘s problem I was able to correct the header and sidebar alignment problems, but I am still left with one problem in the main posts area of the webpages. The Buddypress bar that displays “Activity Profile Messages Friends Groups Settings” gets cutoff half way through the ‘Settings’ by my site’s right sidebar. Is there a way to correct this using a similar approach as you did earlier here? If so, can you please explain as well as possible and include the code required as I am an amateur with html and ftp and am trying to correct my site’s problem by researching others. An answer would be GREATLY appreciated. Thank you.
You don’t have BuddyPress activated in your installation. If you activate it again, you need BP Template Pack plugin activated to make your theme compatible with BuddyPress.
Hi, I just tried to open next page of your plugins list, but only the first page content shows up, even the url change to any page number.
I can see the content of Buddypress, however it’s all squished to the left of the screen like so http://imgur.com/TQZfb
I’m trying to integrate Buddypress into the Arcadia theme by United Themes. I’m having some trouble at the last part of the template pack plugin. I can’t find the format of my theme anywhere. The page.php and index.php file have code like this http://pastebin.com/kbpHQ4Vd Any? My site is mites2012.tk
@wpissues I just tested the code in Custom Community Version 1.8.9.1 from the WP Theme Repo and it’s working fine. Even showed up in both custom menus. If you still haven’t fixed this, post all code you currently have in your functions.php file in pastebin.com
Cool, glad that worked it can be a bit of a ‘where’s text hunt’ in what is theme or what is plugin.
Absolute legend – that’s sorted it! I am using Custom Community but (obviously) it’s under WP themes, not BP. I never thought of that! Thanks so much!
Are you using the default theme or are you using a custom theme? I ask because that text should be in the theme and using a different language file.
You can find it under your theme main directory > members > single > profile > change-avatar.php.
To remove the “visit” menu on the buddybar, simply add this filter to your child theme functions.php
`remove_action( ‘bp_adminbar_menus’, ‘bp_adminbar_random_menu’, 100 ); `
Nick, you should read Justin Tadlocks excellent tutorial on navigation menus at http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus and also read https://codex.wordpress.org/Navigation_Menus
As you’re building this site for your company it may be an idea for your company to hire a developer just to get you past this stage?
Also am assuming you’ve attempted to follow mercim’s excellent guides to custom themes in the BP codex.
not really, what you ask for actually sounds a far more complex affair to pull together than simply running through the template pack and copying a few files over with minor adjustments to markup to suit your custom theme.
You’re welcome. Yeah, gotta watch out where I put my closing backtick 
Marking this as resolved.
That was it you guys rock thanks.
BuddyPress is not activated in your installation. Do post again when it’s back on.