Search Results for 'private'
-
AuthorSearch Results
-
November 18, 2010 at 11:39 pm #98648
B-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?)
October 26, 2010 at 10:37 pm #96611In reply to: Private / secure file uploads for groups
Andrew Mackie
ParticipantI’ve reposted to another group – https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/private-secure-file-uploads-for-groups-1
October 23, 2010 at 1:53 pm #96207In reply to: Setting redirect page for non-logged in users
Miko
ParticipantI don’t want a landing page for visitors, I want normal visitors to see all of the usual pages & posts on the public part of the site. This is happening fine. What I want is for them to arrive on a nice page if they search for something that is on a hidden private part of the site. I am using Private Buddypress to hide members area (private profiles, forums etc) from the main marketing pages of the site ( WP pages and posts). The Private Buddypress plugin annoyingly redirects to the standard WP login screen (as you can see in the code from that plugin posted in my original Q). I do not like this, because it gives no explanantion to the user why they searched for something and arrived at a login screen. This is why I want to redirect to my custom 404 page, which I have modified to say that the item they are looking for is not found, or it is only visible to logged in members. What I want to know is how EXACTLY to modify the above code to get the redirect to point to the 404 page.
The login screen is not helpful, and in fact it’s offputting/confusing because you have to be a member of our photo club to be allowed into the community – so we don’t accept public registrations. Showing a login screen makes it seem like people should be able to register somehow, when they can’t.
October 22, 2010 at 7:21 pm #96119In reply to: Member profile buttons unavailable
r-a-y
Keymaster@intimez – Just checked Private Messages for Friends Only and the plugin still works fine on BP 1.2.6.
BP 1.2.6 made some changes to the way buttons are rendered.
If you modified the member header in your child theme, you’ll need to look at the changes made to /members/single/member-header.php and apply them.
October 22, 2010 at 4:39 pm #96084In reply to: Time Offset still present in BP 1.2.6
paulhastings0
ParticipantI’m afraid so.

But if my memory doesn’t betray me, I think it’s a different part of the private messaging system that’s showing the wrong time now.
October 19, 2010 at 6:14 am #95547In reply to: is that possible with buddypress?
techguy
ParticipantIn order…
-Depends what you mean, but this is a built in featured to BP
-This is pretty much a requirement for BP. Although, you can choose how big or small you want the profiles to be
-Groups in BP should satisfy this. You can make them public, hidden or private.
-This is a widget in the default BP theme
-Just turn it on in the BP settings
-There are a couple picture plugins. One that’s paid that’s pretty good from BuddyDev.com Another one that’s getting really close called BP Media. They have a version available now, but it’s basic. In a month? or so it will have even more features.
-These can just be added to your theme anywhere that you think would be good.So, pretty much everything but the pictures is available by default with BP. The pictures need the plugin.
October 18, 2010 at 6:14 pm #95502In reply to: Bug in a member’s personal activity stream?
Roger Coathup
Participant“activity private” – was just a general thought if you’d added a plugin or other custom code.
As I said before, without detailed info about your configuration, and your theme – it’s going to be difficult for anyone to help you on this one.
Does it only affect one user, or more than one?
Can you simulate it on one machine / browser – i.e. try activity for 2 users – do they both work?
October 18, 2010 at 3:23 pm #95480In reply to: Bug in a member’s personal activity stream?
apwinthrop
ParticipantThe theme hasn’t changed in months, but the person’s activity does not seem to appear on the sitewide stream. No privacy plugins – or blockage of engines. Dumb question- how do you make your activity private?
Cheers
-
AuthorSearch Results

