Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 3,401 through 3,425 (of 3,868 total)
  • Author
    Search Results
  • #68135
    Peter Anselmo
    Participant

    @kriskl

    Thanks for the feedback, I’ve had someone else suggest that as well. My thinking is that documents are currently consistent with the group access levels. For example, if you can seen forum topics and members of public groups, you should be able to see documents. If there’s group content you only want group members to see, then it should be a private group.

    I see your point for encouraging outside users to sign up, I’ll consider adding an option for that behavior.

    @pjnu, Yes, it won’t be an issue anymore. Thanks for your patience.

    #68044
    Pedro Miguel
    Participant

    theres already a plugin who does that, ,you can use the plugin or check the source and adapt to your needs.

    #68003
    e_mcpartlin
    Participant

    Was this ever solved? I am trying to accomplish the same thing – make some profile fields private. Thanks!

    #67815
    MrMaz
    Participant

    Anton sent me a private message that the issue above was a problem with his child theme that was breaking Links.

    #67684
    DjZoNe
    Participant

    I don’t know if you’ve found a treatment, for this, but I’d suggest a plugin named HashCash from Donncha:

    http://wpmu.org/wp-hashcash-for-wpmu/

    #67682
    Fernando Marques
    Participant

    Hello friend I can not really send you the link, and visited it at any time, and wanted to make a surprise, with the change of thema

    I am sending you a private message to explain a second solution,

    but now on the explanation of step 3, I looked and I swear to you that I could not understand where change, he even left an example, but I’ve never seen an example in practice, the funny that I go to a Web extensive study to learn everything, but for now I need help

    #67095
    rich! @ etiviti
    Participant

    only problem with removing the link:

    <?php echo bp_get_root_domain() . '/' . BP_GROUPS_SLUG . '/create/' ?> someone could still access the url directly to start the process.

    I went ahead and created a plugin (waiting on repo request on wordpress.org) to disable the steps and show a ‘new groups creation is closed’ message. Also added in a midlevel-cap to allow another set of users the ability to create private/hidden + w/forums. I may expand this to restrict other steps in the group creation process (as other plugins using the group extension api may add in their own step)

    Basically the plugin removes the $bp->groups->group_creation_steps – adds in a custom position 0 step to display a closed page.

    actually you can create a login page in 1.2.1 and have your site private….. once they pass credentials, they will be allowed inside.

    #67039
    freebee1989
    Member

    Okay, thanks! Anyone have any idea o how this can be done now?

    #67036
    r-a-y
    Keymaster

    That code snippet probably applied to an older version of BP.

    #67031
    r-a-y
    Keymaster

    Cool! Glad it worked for you, Jfcarter.

    Make sure to green light the thread! ;)

    #67019
    jfcarter
    Participant

    Thanks, r-a-y! Am giving it a try now…

    Worked like a charm!! Many thanks.

    Dwenaus
    Participant

    @myqolik and @lautering – I believe my plugin does what you need. You mention wanting to enable people to read the content without joining the group – If you use my plugin then this is possible. When you set the group to Announcement-only, then ONLY admins and moderators can add content. The group can be public, private or even hidden. And for a public group, it doesn’t matter if the members join or don’t join, they still can’t add any content. So it really doesn’t matter if they join or don’t they still can’t write a thing. The benefit of joining the announcement group is that with email notifications plugin, you can turn that group into a email newsletter.

    Does that match what you are looking for?

    #66786
    r-a-y
    Keymaster

    @intimez

    is_site_admin() is the function but will probably be deprecated soon when WP 3.0 comes out.

    Try this out:

    <?php if ( is_user_logged_in() && !bp_is_my_profile() && function_exists( 'bp_send_private_message_link' ) && ( my_bp_is_friend() || is_site_admin() ) ) : ?>

    re: direct url to private message… you’ll have to modify the /bp-themes/bp-default/members/single/messages/compose.php file in your child theme to do a check for the username and if the logged-in user is friends with that username.

    If the username is friends with the logged-in user, show the form to complete the message; if not a friend, don’t show the form.

    #66784
    shaisimchi
    Participant

    There is a function that checks if a user is a site admin (can’t remember the name now but if you can’t find it let me know). you can use it to exclude the admin this allowing him to do send the message.

    Thanks,

    Shai

    #66777
    intimez
    Participant

    @r-a-y

    I did what you mentioned but the code in bp-custom.php is now showing up at the top of the page visible to all. Maybe I missed something else?

    edit: ooops, my mistake. It’s working now but I can PM by going direct URL.

    edit2: how to enable so admin can still PM w/o being friends?

    #66723
    r-a-y
    Keymaster

    Try this out in /wp-content/plugins/bp-custom.php:

    function my_bp_is_friend() {
    global $bp;

    if (friends_check_friendship($bp->loggedin_user->id,$bp->displayed_user->id) )
    return true;

    return false;
    }

    Then copy /bp-default/members/single/member-header.php to your child theme.

    Next, edit:

    <?php if ( is_user_logged_in() && !bp_is_my_profile() && function_exists( 'bp_send_private_message_link' ) ) : ?>

    to:

    <?php if ( is_user_logged_in() && !bp_is_my_profile() && my_bp_is_friend() && function_exists( 'bp_send_private_message_link' ) ) : ?>

    #66713
    paulhastings0
    Participant

    Are the blogs that are posting public or private?

    #66686
    rich! @ etiviti
    Participant

    check out this function in bp-friends.php

    function friends_check_friendship_status( $user_id, $possible_friend_id ) {

    that will return a string depending on the friend status

    #66676
    kurtbp
    Member

    Bump.

    Anyone made any progress with this?

    abcde666
    Participant

    just change the Group-settings from “Public Group” to “Private Group”.

    arghagain
    Participant

    I’m so happy that now I got activity problem solved which I had to follow the suggestion at http://premium.wpmudev.org/forums/topic/buddypress-upgrades-with-multi-db#post-28120. Unfortunately, I couldn’t solve the broken message problem where a member or even admin cannot send a private message to another member. Whenever trying to send a private message to a friend (which had been accepted as a friend already), I get this error “There was an error sending that message, please try again.”

    Anyone has any idea how to go about fixing the private message problem?

    #66559
    abcde666
    Participant

    I would be already happy if the already existing Private-Groups would work properly……

    https://trac.buddypress.org/ticket/2072

    #66472
    jalien
    Participant

    Actually thanks for the post. This is a something I have been doing (trying to do) since wpmu 1.0. I use WPMU / Buddypress with young (elementary school students 6-12 years old) so simplicity is a must. The New Blog Options plugin (if it works as it says it will) would make make perfect customization possible. Here are a list of WPMU plugins that I use or have used that might help. I am in the process of retrying everything to achieve exactly what you are trying to do. Let everyone on the forums know how your testing goes. Hope this isn’t too long. I added links to save time since there are sometimes plugins with similar names).

    New Blog Options – this one is fairly new (still beta), and I haven’t tried it extensively yet, but it will allow you to clone on blog setup with it’s plugin options etc. to all new blogs.

    https://wordpress.org/extend/plugins/default-blog-options/

    Limit Blogs per User – if you don’t want them making more than one blog (set to 2, one is the main buddypress blog and 2 is their own blog)

    https://wordpress.org/extend/plugins/limit-blogs-per-user/

    WPMU New Blog Defaults – this will allow you to restrict menus, change default links, etc under the Options in the Site Admin menu

    https://wordpress.org/extend/plugins/wpmu-new-blog-defaults/

    Members – this one takes over where the old Role-manager plugin left off. Haven’t had time to check it out yet, but if you could use this with New Blog Options it would allow you to very finally tune what your users could do and see.

    https://wordpress.org/extend/plugins/members/

    Adminimize – again I haven’t played with this for a while, but if you could use it with New Blog Options, then you could simplify the look of the menus for your users too.

    https://wordpress.org/extend/plugins/adminimize/

    Default User Role – will set the user role when a new blog is created

    https://wordpress.org/extend/plugins/wpmu-default-user-role/

    Plugin Manager – does what it says, allows you to manage which plugins users can set, which ones are automatically turned on, and which regular users cannot see

    http://wpmudev.org/project/wpmu-plugin-manager

    download link is: http://wpmudev.org/download/946613807_mp-plugin-manager.php

    Of course with young people you might want to consider a privacy plugin like:

    More Privacy Options – this doesn’t work with the feed on Buddypress, but if you search the forums it can be made to work or you can use the following plugin for feed privacy (Buddypress privacy should be coming soon)

    http://wpmudev.org/project/More-Privacy-Options/

    download link is: http://wpmudev.org/download/999830698_ds_private_blog.php

    BP MPO Activity Filter – This plugin, BP MPO Activity Filter, does just what the name suggests: it filters BuddyPress activity feeds. Used with More Privacy Options.

    https://wordpress.org/extend/plugins/bp-mpo-activity-filter/

    #66399
    Michael Berra
    Participant

    Hi Erich,

    i don’t think it has something to do with that Ticket…

    In my Case ALL the old group-activity does not show anymore… ( i had at last Forums disabled)

    The Strange thing to me is, that I seem to be the only one experiencing this, although it happens on two total different setups. They only have in common, that both were setup in the very early stages of BP…

Viewing 25 results - 3,401 through 3,425 (of 3,868 total)
Skip to toolbar