Search Results for 'private'
-
AuthorSearch Results
-
November 28, 2010 at 10:47 pm #99419
Ezeke
Member@dwenaus thank you very much for this code, it works awesome!
I’m missing one feature though, when you click “create a new thread” you can’t chose the private/hidden groups, it would be great if you could add this.November 27, 2010 at 10:31 pm #99372In reply to: Groups Privacy behaviour
progressiveimpact
Membermmm… none of the above… and I’ve done some further research and discovered more clearly what the behaviour is.
To start, this is what I am looking to achieve:– If a user is NOT a member of a hidden group then it is hidden and they do not know it exists at all.
– if a user IS a member of a hidden group then it comes up on the group widget list as visible.
– all other current behaviour stays the same i.e. public (full access) private (can be seen but not entered).Now… what I have now found is that the group list pages do exactly what I expect, but the group widget behaves differently.
The widget does NOT show hidden groups even if you ARE a member but does show private groups that you are NOT a member of.
Also what I have seen is that if I look at another members page the group widget appears to then show their groups not mine (this might be an admin ‘feature’ though)???So if I have a 1000 groups and a user is member of 3 I do not want to display 1000… only 3 that are relevant to them.
For my application the users will not be able to register to be part of these set of groups as they relate to where they live.
If a user browses a friends page I do not want the group widget to then show the groups relating to the friend.So it seems that the group widget is using some diffently coded filters than the group listing pages and this (to me) is not correct and is (possibly) a bug.
I hope that is a little clearer on the nature of the issue… can be a little difficult to explain these things in a posting without loads of illustration etc to demonstrate.
cheers and thanks for your input.
November 27, 2010 at 8:44 am #99329In reply to: Groups Privacy behaviour
progressiveimpact
MemberWell I am looking at that plugin for a news type capability perhaps but it doesn’t address the fundamental behaviour I’m looking for… I really want the ability for hidden groups to be ‘seen’ by their members and therefore display in the group widget or for private groups to be hidden from non-members. The announcement plugin says if not admin->display in read only mode.
In essense if you have a thousand groups you wouldn’t want to present them all to non-members, but you do want to display those that you are a member of. The current group visibility behaviour (public,private,hidden) does not support this and it seems to me to be logical in many situations.
There must be a segment of code that reads… loop the groups -> if hidden and if not Admin, do not display… I just need to know where that piece of code is !!!
November 27, 2010 at 7:45 am #99328In reply to: Show avatars in notification menu
Virtuali
Participant@matiaspunx, Usually it will list the username, unless it is a private message.
It would surely be possible if you took the code of the (function ‘show user avatar’) ‘buddypress’)), and placed it in the adminpar php file, it would show up.
I would highly recommended seeking a professional web builder, because it requires going to to the Buddypress Core Elements, and would take some expert styling on avatar size, due to dropdown menu.
November 27, 2010 at 7:36 am #99327In reply to: How to display replies in Notifications menu
Virtuali
Participant@liesl1698 Are you talking about a Facebook Notification Functionality?
If yes, sorry, unless you are an expert at html code functions, that is not an option at the moment. The Notifications feature is for private messaging, and community functions. There may be a plugin in the near future.
November 22, 2010 at 5:45 pm #98900In reply to: Disable Activity Stream for Profiles?
Brajesh Singh
ParticipantHi,
The reason it is happening perhaps hide_sitewide is not set to 1 for private activity. Most probably a conflict with some plugin as you already mention above. Can you check the database activity table to confirm that ?Have you put the code
`
define(“BP_DEFAULT_COMPONENT”, “profile”);
`
In wp-content/plugins/bp-custom.php, It will make the profile accessible if put in bp-custom.php. yes,it simply change the default profile component(landing page on profile) from activity to xprofile.November 22, 2010 at 10:32 am #98864In reply to: Disable Activity Stream for Profiles?
Brajesh Singh
ParticipantHi,
The private updates on group should not be visible to anyone other than the profile owner. It means something is wrong, you should check other plugins.
btw, yes, you can remove the activity section from profile. put the following code in your theme’s functions.php`
global $bp;
bp_core_remove_nav_item($bp->activity->id);
`
But this will make the profile inaccessible, as activity is set as the default profile component. so you may want to put the following code in bp-custom.php
`
define(“BP_DEFAULT_COMPONENT”, “profile”);
`
hope that helps.November 18, 2010 at 11:39 pm #98648B-ROCK
Member@djpaul The welcome private message part works. But the emails. don’t. When will 1.2.7 come out? Any alternatives in the meantime? Its strange that we cant just go in and edit the subject
November 18, 2010 at 12:32 pm #98581shortfame
Memberme the same problem… a private group works,,, but my hidden group doesn´t show any invite button anymore… it´s not safe to use this so far i think.
November 16, 2010 at 1:35 pm #98394Nahum
ParticipantPage Caching Basic, Database Caching Basic, Browser Caching.
I just figured out that Object Caching was messing up my Private Messages component. When logged in and bouncing from profile to profile and trying to PM a member sometimes the ?r=membername&wp_nonce=XXXX becomes frozen on a previous membername. Turning off the object cache fixed this so I don’t know what if anything could be doing inside the object cache advanced settings can be done?
I’ve gone ahead and removed Page Caching. Which only leaves me with Db Cache, Browser Cache and Minify(even though I haven’t set any .js or css at all) – I guess removing the page cache should resolve the activity update delay. I’ll turn off Db cache then I’ll only be using Browser Cache and Minify(somewhat)…hm…doesn’t sound like much anymore…hehe.
I also read that the switch_to_blog fix will be coming in the next release.
November 9, 2010 at 6:46 am #97810In reply to: Send-to autocompletion is broken
shagazulu
MemberI also have the same problem. Not just with my regular site, to which I’ve done a ton of tweaking, but also on a fairly fresh install on a different domain. What happens is that I click on “send private message” and everything comes up fine, an email with name of the person I’m about to email, plus a text-entry box to the right of the name. If I try to type into that field, the first thing that happens is that my header image reverts to the original blue of the default buddypress install… and then if I click “tab”, the following html comes up in that field I just tabbed out of: “”. Odd.
This installation of WordPress only uses the BuddyPress plugin. No other. It’s a relatively clean install, again, with 1 plugin. My main site, however, also exhibits this problem.
thanks in advance for the help on this.
November 7, 2010 at 9:15 pm #97669In reply to: How to create Semi-Private groups?
r-a-y
KeymasterAs noted in the ticket:
https://trac.buddypress.org/ticket/1125#comment:3It should be possible by creating a plugin.
If you have a little WordPress experience, check out /buddypress/bp-groups.php for all the necessary hooks and filters to start work on the plugin.November 5, 2010 at 11:50 am #97547In reply to: Alumni membership site customizations
Ehegwer
ParticipantAs for the usernames, I just added a note to the field that appears on registration. When people are signing up, and that mandatory username field pops up, I make sure users know that this is visible to the entire community. That way they know not to use something private. Most internet users know all about usernames, right?
November 5, 2010 at 6:19 am #97526In reply to: Alumni membership site customizations
pcgs51
MemberThanks ehegwer I’ll look for the Private Community plugin. Thats what I needed to know. But still need the username thing. Looks like according to you Boone I’ll need more skills than I currently have. I hope there is a volunteer out there. I won’t mind the usernames so much IF they aren’t visible to the community. My audience will be confused by usernames. Remember these are people who actually already know each other already by real live names. I’m still tinkering with BuddyPress to see if it will work for my community. If I continue to be happy with my customizations I will be interested to know what your fees would be to create such a plug-in Boone.
November 4, 2010 at 8:23 pm #97477clarklab
MemberWow it looks like mine goes a bit farther than this. It won’t let me post status updates, private messages, etc. All with that generic, red error message.
What would be stopping all BP data entry? I can still leave comments on posts just fine…
November 4, 2010 at 7:55 pm #97466In reply to: Alumni membership site customizations
Ehegwer
ParticipantPretty easy. Just create some custom registration fields for each of the categories you want to collect. You can make them mandatory if you want, too.
Then to make things private you can use the BuddyPress Private Community plugin, and that would prevent prying eyes from seeing things they shouldn’t.
November 4, 2010 at 12:34 pm #97420In reply to: WPML.ORG / BP Multilingual Plugin Support
Hugo Ashmore
ParticipantNot sure of the point in posting these comments on this support site really, think you really need to direct these to the authors site, if you’re post has been deleted inquire privately of them as to why
October 30, 2010 at 2:20 pm #96994Boone Gorges
KeymasterHere’s how buddypress.org does it, with a filter that essentially adds a search term ‘ @username‘ to the bp_has_activities filter:
`function bporg_activity_with_others_filter( $qs ) {
global $bp;$user_id = ( bp_displayed_user_id() ) ? bp_displayed_user_id() : bp_loggedin_user_id();
/* Only filter on directory pages (no action) and the following scope on activity object. */
if ( ( ‘dashboard’ == $bp->current_action && strpos( $qs, ‘personal’ ) !== false ) || ‘just-me’ == $bp->current_action ) {
if ( strpos( $qs, ‘filter’ ) === false )
$qs .= ‘&search_terms=@’ . bp_core_get_username( $user_id ) . ‘<';return $qs;
} else {
return $qs;
}
}
add_filter( ‘bp_ajax_querystring’, ‘bporg_activity_with_others_filter’, 11 );`The problem with this approach is that the search bypasses the private/hidden group setting, so activity created inside of a group will show up on public profile pages if it contains @username in it. Here’s a filter that gets around it about halfway, in a hackish way:
`function bporg_ensure_hidden_activity_updates( $has_activities ) {
global $activities_template, $bp;if ( bp_is_my_profile() || !$bp->displayed_user->id )
return $has_activities;foreach( $activities_template->activities as $a_key => $a ) {
if ( $a->type != ‘activity_update’ && $a->type != ‘activity_comment’ )
continue;if ( $a->component != ‘groups’ )
continue;$group = new BP_Groups_Group( $a->item_id );
if ( $group->status != ‘public’ ) {
unset( $activities_template->activities[$a_key] );
$activities_template->total_activity_count = $activities_template->total_activity_count – 1;
$activities_template->activity_count = $activities_template->activity_count – 1;
}$activities_template->activities = array_values( $activities_template->activities );
}return $has_activities;
}
add_filter( ‘bp_has_activities’, ‘bporg_ensure_hidden_activity_updates’, 999 );`This latter problem should be fixed in BP 1.3.
October 30, 2010 at 6:03 am #96971In reply to: Private / secure file uploads for groups
Stacy (non coder)
ParticipantThere’s Private files plugin (not sure if it’s for bbpress) https://wordpress.org/extend/plugins/private-files/ or
https://wordpress.org/extend/plugins/private-files-for-social-privacy/October 30, 2010 at 5:47 am #96970In reply to: Private group RSS?
Stacy (non coder)
ParticipantThere is Private rss plugin that uses authentication https://wordpress.org/extend/plugins/private-rss/ (Not sure how it would work for groups)
October 29, 2010 at 7:35 pm #96940In reply to: Buddypress and wp-wishlist help
Michel Fortin
ParticipantSusan, I know this is old news, but I use Private BuddyPress:
https://wordpress.org/extend/plugins/private-buddypress/
It protects BP pages that are not protected by WishList.
October 29, 2010 at 1:19 pm #96908In reply to: Changing Group tab display defaults
Andrew Tegenkamp
Participant@r-a-y, thanks for this as it works great! To @Robcwright and others interested, I know it’s an old thread but have found this change will make it only do this for public groups or groups where you are a member and private groups will no longer redirect but keep the default setup. I put both in bp-custom.php and that seems to work great with a variety of child themes. If you want any other modifications for other cases I haven’t tried, just mention me in the reply and I’ll take a look when I can.
`
function redirect_to_forum() {
global $bp;
$path = clean_url( $_SERVER );
$path = apply_filters( ‘bp_uri’, $path );
if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav ) === false ) {
if ($bp->groups->current_group->is_user_member || $bp->groups->current_group->status == ‘public’) {
bp_core_redirect( $path . $bp->bp_options_nav . ‘/’ );
}
}
}
add_action( ‘wp’, ‘redirect_to_forum’ );function my_bp_groups_forum_first_tab() {
global $bp;
if ($bp->groups->current_group->is_user_member || $bp->groups->current_group->status == ‘public’) {
$bp->bp_options_nav = ’50’;
$bp->bp_options_nav = ‘Activity’;
}
}
add_action(‘wp’, ‘my_bp_groups_forum_first_tab’);
`October 27, 2010 at 9:42 pm #96751In reply to: Upgrade issue
Nirok
Participantactually just worked it out… i disabled bbforum, friends, groups, private messenging and it works…. i don’t need any of these for the website
October 27, 2010 at 3:27 pm #96709ericreynolds007
ParticipantThanks Rich. No wonder. I am using a Rockettheme child theme.
October 27, 2010 at 12:21 pm #96693rich! @ etiviti
Participantthat change is to a theme file – did your theme update as well? (or is it a child theme?)
-
AuthorSearch Results