Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 1,776 through 1,800 (of 3,450 total)
  • Author
    Search Results
  • #143743
    Jonas Lundman
    Participant

    Hi, 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…

    #143741
    modemlooper
    Moderator

    You 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’);`

    #143740
    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?

    meg@info
    Participant
    #143718

    In 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!

    #143716

    In 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.

    raphadko
    Participant

    So, should I submit this as a bug ticket?

    #143713

    In 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!

    #143706

    In reply to: What are Friends for?

    @mercime
    Participant

    Let 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.

    DaveyWavey
    Participant

    Thanks 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.

    #143692
    Paul Wong-Gibbs
    Keymaster

    The 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.

    Paul Wong-Gibbs
    Keymaster

    One 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.

    #143624
    bojan85
    Participant

    Hi @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

    raphadko
    Participant

    bump.

    raphadko
    Participant

    bump..

    #143404
    fcastro72
    Participant

    Ok 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 you

    #143421
    fcastro72
    Participant

    It 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.

    #143420
    fcastro72
    Participant

    Hi 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
    Thanks

    #143397
    @mercime
    Participant

    You do that in Settings > Privacy where you choose “Ask search engines not to index this site.”

    #143385
    WPwebbouw
    Participant

    How do you set a blog as ‘private’ in a multisite / Buddypress setup?

    #143381
    Tammie Lister
    Moderator

    Is 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.

    #143260

    In reply to: E-mail attachment

    lekiend
    Participant

    Hello Paul,
    I’d like to be able to attach a document to a “private message”.
    Regards
    Dimitri

    #143108
    GordonRe
    Participant

    Or Gravity Forms (paid plugin) + Gravity Forms Directory Add on

    #143064
    GordonRe
    Participant

    Hi
    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

    #143018
    @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.

Viewing 25 results - 1,776 through 1,800 (of 3,450 total)
Skip to toolbar