Forum Replies Created
-
In reply to: How Do I Find a GREAT BP FREE THEME
Definitely looking forward to that.
In reply to: Filter State-Wide Activities From GroupsSounds like something is messing with the default behaviour then. Personal activity updates would never appear in any group unless it was “post in group”, vs “post in profile”
Do you have a filter or plugin already set to do private sitewide activity stream?
“Activity Stream for friends only” & “Currently, I have the privacy option the restrict each post to Public, Friends and Only me. But the Group code you gave me only works if I set the privacy to public.”
In reply to: Filter State-Wide Activities From Groups@naomibuch I think I see what you are saying.
Private group activities are appearing in the sitewide feed? Is that right?
In reply to: Filter State-Wide Activities From Groupsthe reverse of this?
In reply to: Profile view without tabsYou might just over load
members/single/parts/item-nav.phpandmembers/single/parts/item-subnavin your child theme and just remove all the navs or replace them with something of your own.you could keep searching forums for topics on removing tabs there are some “solutions” to removing tabs.
https://buddypress.org/support/search/bp_core_remove_nav_item/
over riding that file in child theme with what i mentioned above is what i am sticking with currently at least for my purposes.
In reply to: Redundant slugsyou could edit the /forum to “topic” or “discussion” in the settings no? same for /forums can be something different as a page name.
or might this be it? https://bbpress.org/forums/topic/how-to-remove-forum-from-url/
In reply to: update group activities just for adminsEdit timed out on me up there and didn’t get to revise my reply in time!
/buddypress/activity/post.form.php, overload it child theme
/* * Template tag to prepare the activity post form checks capability and enqueue needed scripts. */ if( bp_is_group() && !current_user_can('administrator') ) { } else { bp_nouveau_before_activity_post_form(); ?> <h2 class="bp-screen-reader-text"><?php echo esc_html_x( 'Post Update', 'heading', 'buddypress' ); ?></h2> <div id="bp-nouveau-activity-form" class="activity-update-form"></div> <?php /* * Template tag to load the Javascript templates of the Post form UI. */ bp_nouveau_after_activity_post_form(); }In reply to: update group activities just for admins@meisinotti you can restrict the post form to admins depending on what template pack you use… you could set something like,
with nouveau, /buddypress/activity/post.form.php, overload it child theme
/* * Template tag to prepare the activity post form checks capability and enqueue needed scripts. */ if(bp_is_group_activity() && current_user_can('administrator')) { bp_nouveau_before_activity_post_form(); ?> <h2 class="bp-screen-reader-text"><?php echo esc_html_x( 'Post Update', 'heading', 'buddypress' ); ?></h2> <div id="bp-nouveau-activity-form" class="activity-update-form"></div> <?php /* * Template tag to load the Javascript templates of the Post form UI. */ bp_nouveau_after_activity_post_form(); }assuming you don’t allow users to create their own groups, if you want to allow them to post updates on their own created groups then you’d need to check for that.
@easleyr1 nice!
Yes, deactivate your plugins 1×1 to see if you can narrow down the issue to a source.
In reply to: Tool bar not visible to all users (logged out)Thats weird. You should see on the left side a Log In and Register link and a search icon on the right.
And you are not using any other plugin or code snippet to modify the admin bar in some way or making your site private? You have the General setting of Anyone can register ticked?
what is your theme and what plugins do you have installed? when you say friends, is your site meant to be private? I don’t think there is a setting that would cause this. I’d think it would be a plugin or a customization made in the theme.
I just see the user name and type out https://trvbe.com-/members-/krisavalon/
So something is removing -/members from all your user urls.
In reply to: Disable BP TooltipsI tried now with bp legacy pack and the bs tooltip works as expected. something with nouveau in conflict.
In reply to: Tool bar not visible to all users (logged out)This is what I did to force it back. I put this in my functions. You could try that
add_filter( 'show_admin_bar', '__return_true' );In reply to: Tool bar not visible to all users (logged out)@brianstoiber do you happen to have woocommerce installed? I just noticed this myself. I turned off woocommerce and it revealed the toolbar.
In reply to: Tool bar not visible to all users (logged out)Yep, I was wrong! It is a BP setting sorry. still does your theme/a plugin you have also have admin bar settings?
In reply to: Tool bar not visible to all users (logged out)“Show the Toolbar for logged out users” doesn’t sound like a wp or bp setting? Is that a setting of your theme or a plugin? I could be wrong of course but sounds like something to do with theme/plugin.
In reply to: log in to personal activitiesSorry I misinterpreted the initial question, so you have 2 questions
1. Upon logging in you’d like to redirect the user to his profile activity page.
2. How to disable the wp-login for non-admins or something like that so that regular users never see wp’s login screen.2. https://wordpress.stackexchange.com/questions/62889/disable-or-redirect-wp-login-php would this be a good start to a solution
1.https://buddypress.org/support/topic/login-redirect-to-activity-personal-page/ ?
In reply to: log in to personal activitiesIn reply to: User Blogs from Front EndYep, BuddyDev is one of my most trusted! Good support 🙂
@easleyr1 your other members profile do exist https://trvbe.com/members/krisavalon/, are you using a plugin to remove the members slug? or doing something like this https://buddypress.org/support/topic/remove-members-slug-so-its-commembername/
all the links to users have the members slug missing, so its not just friends.
I’d check if any of the modifications have been made affecting this or if you have a plugin on that messes with the urls
You say you deleted your “members” page? Is there still another members page in trash?
Have you tried a different page other than ‘members’ and associated it to member component directory?
In reply to: Disable meta activities on homepageMaybe something like this?
add_filter('bp_member_registered', '__return_false');Cannot tell what page that is? Is that the members widget?