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.
Sorry just to clarify you mean they can’t comment on blog posts or status updates? If that is the case what theme are you using and do you indeed see a comment button? Is it the submitting of the form that doesn’t work or do you not even see a button to comment?
If you are looking at using Disqus this thread is a good starting point: https://buddypress.org/community/groups/creating-extending/forum/topic/buddypress-disqus-integration/
Oh that’s no fun going straight to an error page. Could you let me know if you set the pages up linking to each other when you installed BuddyPress? If so can you do a ‘sanity check’ and take off all other plugins and clear your cache then try again. Something else may be interfering.
Should none of that work if you can either provide a link or respond back with a few more details like what theme you are using that would be great.
Thanks so much for your help. The extra classes are gone now, but the menu is still showing up as a bullet list.
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.
Can you confirm you’ve checked what the last poster said? In wp-admin, go to the BuddyPress > Settings screen, and check that the “Hide admin bar for logged out users” option is disabled.
WordPress comes with a up to date version of jQuery. BuddyPress works with it. Maybe track down where your site is loading an old version of jQuery, and kill it.
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?
BuddyPress doesn’t use that parameter for any sort of ordering. It’s just an array of IDs to be included in the query. The ‘type’ parameter controls this; see bp_core_get_users().
I think you would have to re-order the results of the query after it is made.
@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');
@mercime – I am very sorry about the duplicate post. I tried to delete the other post (don’t know what I did wrong) when I wanted to create this one with more info. I am still unable to delete it but have edited it.
The forum search function is also not working for me.
The last thing I want to do is waste anyone’s time. I can’t tell you how much I appreciate any help, goviral
@subway1968 If you do not need Group Forums, you can go to dashboard menu BuddyPress > Components and deactivate (uncheck) “Discussion Forums”
@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.
I suppose this is related to your post https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/remove-subscribers-from-activity-feed/ ? If so, you are wasting the time of volunteers who respond to that post which did not indicate that you had a User Account Type plugin activated.
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.
@floridabeautiesinhd do start a new topic for your issue and I’ll help you there.
@mercime, along these same lines, I’m at Step 3 with the BP Template Pack plugin on my website. I’m terribly lost at this point. Do you do custom work? I’m looking for someone to get me past this point so I can get back to working on my website. 
Thanks,
You don’t say what your add action is hooked to ( or what the line number refers to ). Do you have a `’walled_garden’` hook in your template?
I would suggest trying the following (I use something similiar but allow access to groups and forums):
`
function sh_walled_garden()
{
global $bp;
if( bp_is_register_page() || bp_is_activation_page() )
return;
if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( bp_get_signup_page() );
}
add_action( ‘bp_init’, ‘sh_walled_garden’ );
`
I also substitute `add_action( ‘wp_loaded’, ‘sh_walled_garden’ );` on a different site….
`bp_init` and `wp_loaded` are “native” to buddypress/wordpress so you don’t need to create your own template hook….
This is in a bp-custom-php file – using buddypress v1.5.5 as I haven’t upgraded to 1.5.6 yet….
see https://codex.buddypress.org/troubleshooting/frequently-asked-questions/
section: BuddyPress isn’t sending out emails (eg. activation emails, email notifications)
Hi,
I have i think a similar problem….. I’m trying to get TinyMCE in my buddypress edit.php ( so when you are editing your profile page and there is a textarea, it shows a tiny mce..
The only thing that is working is the strong function…. I have downloaded tinymce from the site: http://www.tinymce.com/wiki.php/Installation
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.
I’m running:
bbpress
bbpress Q
Buddypress
Buddypress Human
Buddypress Like
Buddypress Share
Simple Facebook Connect
Custom Login
Quick Chat
WP-FileManager
If its not showing for logged out users but showing for you when you login, go to buddypress > settings> and make sure its clicked to no where it ask’s Hide admin bar for logged out users?