Search Results for 'private'
-
AuthorSearch Results
-
August 31, 2010 at 3:12 am #91068
In reply to: How to make a private community?
Josh Frank
ParticipantWanted to say thank you and put in my endorsement for @Travel-Junkie ‘s great, simple privacy solution.
Re-posting that code below for simplicity’s sake, found at this comment link:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-make-a-private-community/?topic_page=2&num=15#post-44616Running WP 3.0.1 single-site with BuddyPress 1.2.5.2.
Add to functions.php (may be titled Theme Functions in your Dashboard Theme Editor):
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->root_domain .’/’. BP_REGISTER_SLUG );
}
add_action( ‘get_header’, ‘sh_walled_garden’ );August 29, 2010 at 1:02 pm #90818Hugo Ashmore
Participanthuh I make that 5 mins .
Can’t wait for the privacy plugin as that’s the way forward, I anticipate a massive rush to download it when released, just hope that rush is matched by a rush to donate even if token gestures
If and when I recommend someone use a plugin in future I think I’ll be adding a reminder to donate a small token of gratitude to the author.August 29, 2010 at 12:24 pm #90815Jeff Sayre
ParticipantWell, @hnla beat me to the answer by 4 minutes!
August 29, 2010 at 12:23 pm #90814Jeff Sayre
ParticipantA quick search with the proper terms will bring up a number of options. This post in this thread should help. Once my BuddyPress Privacy Component is out in the wild, you will be able to easily do this with a simple radio button selection in the Site Admin menu of the component.
August 29, 2010 at 12:19 pm #90813Hugo Ashmore
ParticipantDid you try searching the community?
This thread might be worth you reading , it will allow you to make the site completely private to all but registered logged in users, or a variation on ‘All’ if you wanted to show certain pages.
August 28, 2010 at 8:16 pm #90750In reply to: aggregate activity stream from public groups
Roger Coathup
Participant@psycolor: public group activities (e.g. joining a group, creating a group, posting updates) should appear in the standard activity stream. Which activities are not showing for you?
To hide private group activity from the activity stream – follow the instructions I gave for excluding blogs in this thread: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/need-exclude-parameter-for-bp_has_activities/
Check whether the activity item action is group related, then use the primary id of the item to get the group_id, and then check whether it is one of your private groups.
As per my comment on blogs, you can do this for all activity loops by using the filter, or on a loop by loop basis.
August 27, 2010 at 8:24 pm #90608Beck B
Participantbump?
August 26, 2010 at 5:31 pm #90478paulhastings0
ParticipantThe link would be: https://buddypress.org/community/groups/bp-profile-privacy/
August 26, 2010 at 4:41 pm #90475govpatel
Participant@Ryan Try this plugin BuddyPress Profile Privacy see if that is what you looking for as I am using it and has settings you are looking for.
August 26, 2010 at 6:25 am #90426paulhastings0
ParticipantYeah, we know. @jeffsayre‘s been working on a plugin to address this critical hole in BP. During the developer chat today Jeff guestimated that after 1.2.6 makes it out the door the BP Privacy will make it’s appearance about a week later.
So in short, there’s no fast fix. Personally I’d recommend either warning people to use the site at their own risk or to take it offline. I know what it’s like, my community has been stalled for the last few months waiting for a Privacy plugin before we go on a recruiting push.
August 25, 2010 at 8:29 pm #90369In reply to: Private group RSS?
Tosh
ParticipantCame here looking for a solution and found this thread
Ah well.I may go with this plugin. Anyone try this ?
https://buddypress.org/community/groups/buddypress-group-email-subscription/
August 25, 2010 at 3:20 am #90293In reply to: More Core Committers?
John James Jacoby
Keymaster@rogercoathup Happy to talk privately about why I opted to block the person in question from buddypress.org. Don’t want to air the dirty laundry but rest assured it takes quite a bit to get to that point.
@paulhastings0 Very little ‘risk’ but you’re on the right track. IMO one of the harder things about running such a large project is deciding what belongs in the core and why. It’s something that Andy was really strict about and did a great job of training me on because I was anxious to learn and asked for feedback with every patch I submitted for more than a complete calendar year before asking if he could use more ‘official’ help. You can look back through my commit history and see a few blunders here and there, as they’re fairly easy to make when you’re bouncing between installations. Every one of the guys you mentioned (including @cnorris23 and a few others) are the top of the list of being considered for core commit access. You could say it’s the next step on the ladder for each of these guys and they all deserve the promotion fairly equally.
If/when it comes time, it will be a hard decision to make.
August 25, 2010 at 3:05 am #90290In reply to: activity feed no longer showing commented on
John James Jacoby
Keymaster@metakappa The activity component needs to be matched up with the Activity Streams standard asap, and we’ll hopefully be able to do that in 1.3.
@intimez If you block search engines, your site is set to private, and blog posts and comments won’t appear in the stream. Make sure the option to make your blog public is the one selected.
August 20, 2010 at 10:21 pm #89871In reply to: Make Private Groups Visible
r-a-y
KeymasterIt’s possible, but would probably require hacking the core.
I don’t have time to look into this, but I would also suggest taking a closer look at /bp-groups/bp-groups-templatetags.php as well.Look for private and group statuses in that file.
August 20, 2010 at 9:54 pm #89868In reply to: Make Private Groups Visible
amahesh
Memberthanks for the help with the admin issue @r-a-y…would you or anyone else have a possible solution for this?
August 18, 2010 at 10:15 pm #89605In reply to: Make Private Groups Visible
amahesh
Member@r-a-y
I am trying to make a group for “American Restaurants” and I want everyone to be able to see the content of the group, but only accounts which are actually restaurants to be able to request an invitation and joinAugust 18, 2010 at 9:40 pm #89600Mack
ParticipantThanks a lot, my function now works. Maybe I made sth wrong with these parameters. Messages now appear in database, the problem is that PMs are enabled in buddypress settings. I guess I will have to implement inbox myself, as it would be faster

Thanks for your responds again
.Cheers,
MaciejAugust 18, 2010 at 7:29 pm #89587In reply to: Make Private Groups Visible
r-a-y
KeymasterWhat’s the point of having a group private then?
Just make everything public!
August 18, 2010 at 6:38 pm #89569r-a-y
KeymasterJust looking over the parameters again, it appears that the “recipients” parameter should be an array.
So try changing that.PMs and other BP components can be enabled/disabled from the “BuddyPress > Component Setup” page in the WP admin dashboard.
August 18, 2010 at 6:24 pm #89568Mack
ParticipantAt first I tried to send arguments the way you suggested in last post, but it didn’t work, so I tried to do it in url-style. None of these worked so far.
Can you tell me how to enable PMs?
Thanks for replies!
Cheers,
MaciejAugust 18, 2010 at 6:21 pm #89567In reply to: Make Private Groups Visible
Pisanojm
ParticipantRight, I was saying look at the code to see if you can replicate what you want.
August 18, 2010 at 5:54 pm #89561r-a-y
KeymasterI can see potential problems with that $args variable you have setup.
Try setting up the arguments as an array.$args = array( 'recipients' => $user_id, 'sender_id' => 11, 'subject' => $title, 'content' => $message );If PMs are disabled, the code will not run. In fact, most likely you’ll get an undefined function error.
August 18, 2010 at 5:51 pm #89560In reply to: Make Private Groups Visible
amahesh
Memberthats only for the forum though…I want to make it so that anyone can see the group, but to join, you must request an invite
August 18, 2010 at 12:36 pm #89511Mack
ParticipantThe function I wrote is as following –
function send_msg($user_id, $title, $message){
$args = “recipients=$user_id&sender_id’=11&subject’=$title&content’=$message”;messages_new_message( $args );
}I pass only recipients id, sender id, subject and content, due to call to wp_parse_args in messages_new_message, which fills message parameters which aren’t sent with default values, I believe. But it doesn’t affect database at all, no new messages are inserted.
—
About inbox, the installation I am working on is quite tweaked, so I don’t know what has been enabled and what disabled
. But if pm’s are disabled, is there an easy way to enable them? Also if pm’s are disabled, will message_new_message function do anything at all?Cheers
MaciejAugust 18, 2010 at 5:25 am #89476In reply to: Make Private Groups Visible
Pisanojm
ParticipantI can’t help, but it looks like you might be able to glean something from the Announcement Plugin where anyone can read, but people can’t post….
-
AuthorSearch Results