Search Results for 'private'
-
AuthorSearch Results
-
October 20, 2012 at 4:58 pm #143743
In reply to: Create private membership site with BuddyPress
Jonas Lundman
ParticipantHi, recently worked on a datingsite, and a school intranet for BP and scanned 6 month of Getting BP private. Have a lot of notes -and one popped up when reading this post:
http://picklewagon.com/wordpress/new-user-approve/
“When a user
registers for the blog, the user gets created and then an email gets sent to
the administrators of the site. An administrator then is expected to either
approve or deny the registration request. An email is then sent to the user
indicating whether they were approved or denied. If the user was approved,
the email will include the login credentials. Until a user is approved, the
user will not be able to login to the site.”Try this as a start – didnt remember if I have (Went trough TONS of solutions of reg process, but I saved this link so maybe its useful…), The fix might be to preserve the passwords somehow instead of autocreate them when aproved.
/ Maybe gonna share my solutions later for the BP datingsite – lot of privacy filters and hooks…
October 20, 2012 at 3:00 pm #143741In reply to: Create private membership site with BuddyPress
modemlooper
ModeratorYou are better off letting email go to user but remove the activation link. Create a function that hooks into member sign up to email you separately. I’m suggesting this because its better conversion for users to get the email.
`function email_admin_user_signup() {
//email admin code here
}
add_action(‘bp_core_signup_user’, ’email_admin_user_signup’);`October 20, 2012 at 2:48 pm #143740In reply to: Create private membership site with BuddyPress
angslycke
Participant@djpaul: Yes, but I want to redirect the “activate your account” e-mails to the site admin instead of the user to let the admin know that a new user has registred. I’m trying to figure out the best way to do this. Obviously I don’t want to edit core files, so best practice should be to use a filter to replace the users e-mail address with the site admin e-mail address I guess?
I found an old post regarding this here (from 2010):
http://www.thoughtsofjs.com/moderate-new-user-registration-in-buddypress.html
They’re editing core files there (bad!), but I found this in the comments as a function to achieve the above:
`
function filter_replace_with_moderator_email($user_email) {
return get_site_option( “admin_email” );
}
add_filter(‘bp_core_activation_signup_user_notification_to’, ‘filter_replace_with_moderator_email’);
`I added this to my themes custom functions.php-file but the e-mail is still sent to the user instead of the admin. Is there a change in BP 1.5 so that I need to change the hook in the filter? Does anyone know?
October 19, 2012 at 10:18 pm #143723meg@info
ParticipantOctober 19, 2012 at 7:34 pm #143718In reply to: What are Friends for?
9087877
Inactive@mercime Hey no problem. Just out of curiosity even though that plugin has not been updated, do you know if it works with the current versions of WP and BP? I know sometimes it just a matter of testing with the current versions and updating the readme.txt in the plugin to reflect it will work with them. Thanks again.
@tdempsey2012 if @mercime confirms the questions above this may help give a you a reason for friends on your site. Also you may want to check out the plugin BP FriendPress https://downloads.wordpress.org/plugin/buddypress-friendpress.zip . It allows you to show your friends and your own activity in the activity stream for your users like facebook does. The admin still see’s sitewide activity.
Edit:
@mercime @r-a-y @tdempsey2012 I just tested r-a-y’s plugin on my test server with the latest versions of WP and BP and its working as it should. Subscribers get denied sending a private message if they are not friends, and the admin can send a private message to anyone regardless of friendship. Is there a chance of getting @r-a-y to update the repository to reflect this plugin is still valid for the current versions of WP & BP? Thanks!October 19, 2012 at 6:43 pm #143716In reply to: What are Friends for?
@mercime
Participant@shawn38 Apologies, no bug at all. It’s my bad, I forgot I have BuddyPress Message Privacy Plugin installed in all sites ever since There’s a free https://wordpress.org/extend/plugins/buddypress-private-message-for-friends-only/ but it needs to be updated for current BP version.
October 19, 2012 at 6:36 pm #143715raphadko
ParticipantSo, should I submit this as a bug ticket?
October 19, 2012 at 6:10 pm #143713In reply to: What are Friends for?
9087877
Inactive@mercime I am using the latest versions of WP and BP and as you stated above `”Private Messages can only be sent to and received by Friends.”` I have found on my test server a possible bug if this is supposed to be the way it functions as stated above. The ajax auto fill in for the User/Friends name will work if you are friends, however it does not work if your not friends, but if you manually type in the users name even if your not friends the private message still goes through and is delivered to the person you are not friends with. Keep in mind these test users are subscribers only and not admins, so is this a possible bug? Thanks!
October 19, 2012 at 4:17 pm #143706In reply to: What are Friends for?
@mercime
ParticipantLet your users make friend connections so they can track the activity each other, and focus on the people they care about the most.
– @tdempsey2012
Private Messages can only be sent to and received by Friends
– Friends who are Group Admins can send invitations to friends to join the group created.
– All those who accepted your friendship request show up in the Friends tab of your Profile page and you can check out the activities of your friends.
– Of course, if you’re Super Admin, you don’t need to be friending everybody to send messages to one and all.October 19, 2012 at 1:24 pm #143697DaveyWavey
ParticipantThanks so much @djpaul – I did consider the possibility of making the groups private, But our client wants them visible to non-group members (so they have an idea of what the group’s are about) and at the very least not auto-joinable. Adding define(‘BP_DISABLE_AUTO_GROUP_JOIN’,true); to bp-custom.php located at wp-content/plugins seems to have had zero effect on any aspect of my pretty standard BP 1.6+ installation. Like no effect at all. Like it’s not there. So if it’s a feature that is not deprecated why isn’t it working? I ask because I am stumped. Totally.
October 19, 2012 at 9:59 am #143692In reply to: Create private membership site with BuddyPress
Paul Wong-Gibbs
KeymasterThe simplest approach may be to surpress the “click here to activate your account” emails, and use something like https://wordpress.org/extend/plugins/unconfirmed/ to manually activate them.
October 19, 2012 at 9:55 am #143691Paul Wong-Gibbs
KeymasterOne option is to set the groups as “private”, not “public”. People can’t auto-join then.
The constant you refer to ought to work in BP 1.6+, it’s not been deprecated.
October 18, 2012 at 3:17 am #143624In reply to: Admin access to other members messages
bojan85
ParticipantHi @meg thanks for the code!! So i assume that this will attach the admin to every private message sent on the site. So the admin would receive a copy of the message sent between members. I’m I correct?
Cheers, Bojan
October 17, 2012 at 10:08 pm #143603raphadko
Participantbump.
October 17, 2012 at 4:20 pm #143580raphadko
Participantbump..
October 14, 2012 at 7:34 pm #143404In reply to: Private blog posting in public activity stream
fcastro72
ParticipantOk i found the problem, i have the more privacy option plugin installed, so if i set the value to blog only member i have the blog post showing in the activity stream.
So i think it would be fine for me to modify the code in order to change where is defined to set hide_sitewide = 1 for private blogs (extending to member only blogs)
Anyone knows where in the code this is checked?
Thank youOctober 14, 2012 at 5:51 pm #143421In reply to: Private blog posting in public activity stream
fcastro72
ParticipantIt doesnt work even if the blog is no googlable or set to blog members only i have the activty stream for every user, of course when i click on the link it says the user has not the permssission to read that page.
October 14, 2012 at 5:45 pm #143420In reply to: Private blog posting in public activity stream
fcastro72
ParticipantHi Karmatosed, are u saying that if i check the blog as No Google it will not show in the public stream?
I’m going to check
ThanksOctober 13, 2012 at 7:19 pm #143397In reply to: Private blog posting in public activity stream
@mercime
ParticipantYou do that in Settings > Privacy where you choose “Ask search engines not to index this site.”
October 13, 2012 at 10:23 am #143385In reply to: Private blog posting in public activity stream
WPwebbouw
ParticipantHow do you set a blog as ‘private’ in a multisite / Buddypress setup?
October 13, 2012 at 9:31 am #143381In reply to: Private blog posting in public activity stream
Tammie Lister
ModeratorIs the blog definitely set to private as thought (haven’t checked) if it was it wasn’t designed to show in stream? Someone else may be able to confirm that but thought it was the case.
October 11, 2012 at 1:02 pm #143260In reply to: E-mail attachment
lekiend
ParticipantHello Paul,
I’d like to be able to attach a document to a “private message”.
Regards
DimitriOctober 7, 2012 at 9:59 am #143108In reply to: Private Group, Public Members List?
GordonRe
ParticipantOr Gravity Forms (paid plugin) + Gravity Forms Directory Add on
October 6, 2012 at 11:30 am #143064In reply to: Private Group, Public Members List?
GordonRe
ParticipantHi
Search being broken is a known problem it says elsewhere. You can use Google to search the site add site:buddypress.org to your search.You can use a plug in like Members List to display the data of all members or those that meet certain criteria on some other page on your site.
Gordon
October 5, 2012 at 3:23 pm #143018In reply to: Private Messaging issue
@mercime
Participant== This issue started a day ago. ==
What have you changed recently in your installation? WP/BP versions? Single/Multisite? New/Old install? In other words, more info needed.
-
AuthorSearch Results