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 //
`
Save files.
@loubas The BuddyPress default theme supports custom menus. Create a menu in Appearance > Menus and name the Home page to Welcome.
== I’m not using a custom theme, I’m using the buddypress template pack ==
@substrato Not clear. What theme are you using? Site URL?
– Only use the BuddyPress Template Pack plugin when you want to make your WP theme compatible with BuddyPress. So if you’re testing/using the BuddyPress Default theme, you do not need to use the BP template pack plugin.
– Creating header-buddypress.php and sidebar-buddypress.php is appropriate for some themes and inappropriate for others, all depends on the HTML structure of the theme.
What custom code are you running? Anything in bp-custom.php if you have one? Or in your theme’s functions.php, or any utility plugins? Have you changed any BuddyPress core files at all?
In wp-admin > Settings > Permalinks, what are your Permalinks set to?
What does the URL of a blog post look like?
@benzine horizontal scroll is not a CSS issue alone. You need to complete step 3 of the BP compatibility process. When I click on member benz benz, there’s no horizontal scrollbar but the sidebar has dropped to below content area.
Open up your theme’s header.php file, copy all code, paste code in pastebin.com, click submit and post the generated URL here. Do the same for your theme’s index.php, page.php, sidebar.php and footer.php files. Let’s see.
== I have tried uninstalling buddypress, but it didn’t even show a registration page after that. ==
@swagcannon change to Twenty Eleven theme and deactivate all plugins. Then check your registration in basic WP install. If that doesn’t work, try to re-upload WP files manually – via FTP/cpanel/filemanager etc. and check if registration works. If that doesn’t work, please go to https://wordpress.org/support/forum/how-to-and-troubleshooting for assistance
@formbi You add the code yourself https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/adding-dynamic-link-to-main-menu-item/
Or use https://wordpress.org/extend/plugins/buddypress-profile-menu/ if you’re using bp-default or child theme of the BP Default theme.
The theme looks familiar. Looks like JS conflict. Have you tried deactivating plugins except BuddyPress to identify the culprit. If deactivating other plugins doesn’t resolve the issue, I suggest contacting theme author.
I answered in the other thread. Of course you could always start a new topic. Do provide a URI to the page with the troublesome button.
Sorry, I meant to mention that this is a multisite install and the activity is really not there, on the backend. (It’s not a theme problem.)
Overload the files in your theme then you should be able to edit them – make copy of bbpress folder and copy into it any files you want to edit.
No. It’s not a theme, which is why it doesn’t show up.
Check if you have permalink.php in server wp-content/themes/clearline/members/single/activity/ folder
I also forgot to add, my second website is running 1.6 with all of the same plugins that we have running on the first site and am not having a problem. We are running Custom Community 1.9.1 as theme
You’re welcome. Marking this as resolved 
Re comment button issue you brought up in other post -> URL of page where issue appears. If it requires login, provide testuser username and password.
@mahdiar we’ll address the comment button issue in that thread but I had assumed you fixed it per your post “I found the answer . I copy new files in bp-default theme to my own theme .”
The issue was with an earlier installation of BuddyPress. It was a matter of reinstalling WordPress. Everything is working well now with the exception of the avatar cropping, lol. Thanks for your help mercime!
Hmmm not seeing much different from the default theme 
Add this code snippet to your child themes functions.php and it will do what you need.
<?php //Removes Access To Dashboard By Non-Admins Per Shawn
function baw_no_admin_access()
{
if( !current_user_can( 'administrator' ) ) {
wp_redirect( home_url() );
die();
}
}
add_action( 'admin_init', 'baw_no_admin_access', 1 );
?>
Yes, WooCommerce works fine alongside BuddyPress. We use it on http://www.enterprisenation.com/shop
WooCommerce provides a fairly rich API with lots of actions you can hook onto — so, provided you are a developer, you can also mould a tight integration with BuddyPress.
Themekraft produce a plugin that integrates the WooCommerce account / profile screens with BuddyPress’s profile screen — we find there are some issues with the UX this creates though. If you google this forum, there was a recent thread discussing this.
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/zenon-lite/
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.
@waiyea As mentioned above, you need to change 16 template files within the 6 BP folders transferred to your zenon-lite theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your zenon-lite 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 `
`
Save files.
Thanks . I think it’s somehow difficult using Firbug . I find avatar styles and it works nice . But I think it’s a good idea to list all of styles and descriptions somewhere for newbies like me !
Now I have my old problem yet ! The comment button problem .
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/please-help-me-correct-my-theme/
@brandonecarr per error
“bp_dtheme_ajax_querystring() (previously declared in /…/wp-content/themes/Mikmag/core/buddypress/_inc/ajax.php:17”
it looks like that Mikmag theme is already BuddyPress compatible, i.e., you shouldn’t install BP Template Pack plugin with this theme.
– Deactivate BP template pack plugin
– Delete Mikmag theme as some files might have been corrupted if you went through Appearance > BP Compatibility
– Re-upload clean version of Mikmag theme
– Contact Mikmag theme author if you have any issues after going through the Installation Wizard after activating BuddyPress https://codex.buddypress.org/getting-started/setting-up-a-new-installation/installation-wizard/
Ask these folks… http://themekraft.com