Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 676 through 700 (of 3,864 total)
  • Author
    Search Results
  • #271070
    angrywarrior
    Participant

    Hi @dcavins

    Thanks for your reply.

    Actually the private forums do show up in that list too when you make updates in them.
    Is there any way you could turn the whole shabang off so no updates are shown in the root forum?

    kind regards
    AngryWarrior

    #271052
    David Cavins
    Keymaster

    Forums created in association with private or hidden groups are created as private forums. (They’ll only show up in the big forums list if you can see them.) Forums associated with public groups are not private–anyone can visit your-group/forum. They will show up in the big list. Visit /wp-admin/edit.php?post_type=forum to verify that private forums are set to private.

    #271048
    David Cavins
    Keymaster

    Hi James, I guess it depends on what a moderator is. (I can only think of Group Mods in BP, not sure what would count as a site-wide moderator.)

    The ability to see private messages is controlled by the check bp_current_user_can( 'bp_moderate' ) which is true for site or network admins.

    You could probably filter that value for some other role, like editor, but it would be a bit complicated to make it work only for private messages. Here’s more information about working with the WP capabilities system: http://mannieschumpert.com/blog/wordpress-capabilities-magic-with-map_meta_cap/

    #271006
    hauge.james
    Participant

    Currently only admin are able to see private messages of the users. This is good, but is there a way to allow moderators this ability too?

    The site is using bbpress and buddypress and a couple other small plugins to help with making the forum the way we want.

    Thanks…
    James in Hawaii

    #270998
    angrywarrior
    Participant

    Right thanks @derrickhall.

    So is there any Buddypresss admin/dev that could jump in and help out with how to disable that?

    It´s really a privacy concern and issue because groups are somewhat a private entity and updates should stay inside the groups themselves and not be spammed in the general forums update stream.

    Thanks!

    #270931
    angrywarrior
    Participant

    Thanks @dcavins for your advise, but that is not a option for us a we run a new public service so it is open for anyone to join and create.

    However we have found a solution which is editing the admin.php and removing the code part that displays this option in the groups settings.

    I will stop probably 99% of all users and left is only very advanced users that would craft such URL I guess?

    On a sidenote:
    I think it would be good if you guys that are part of the BuddyPress Team would consider adding an option in BP back-end setting to be able to enable/disable groups types eg. hidden groups and maybe private to give people more control? Well at least hidden groups.

    Thanks!

    Kind regards
    AngryWarrior.

    #270864
    jbr76
    Participant

    Hi,

    I have looked and looked and can’t find if this is possible. I would like to have a private message thread scroll automatically and link to the most recent message. Ex. When two people are chatting and the thread is long you have to scroll and scroll to the bottom of the page to read the latest message and then reply. It would be nice if this worked more like Facebook, where it auto loads to that recent message saving the user from scrolling so much on big threads.

    I have read about ascending and descending but I don’t really like the idea of reading threads backwards like an email thread, or having the reply box ontop.

    Is this possible?

    #270809
    djsteveb
    Participant

    Thanks for pointing this out @espellcaste!

    Would it be good for me, or anyone else, to add some info to the ticket(s) (not sure if https://buddypress.trac.wordpress.org/ticket/7393 marked as dupe is kicking it back to the other one, of if the other is kicking it back to this one) –

    anyway, would it be good, or be considered rude to mention that this may be required by the ggrp thing that the countries in Europe are expecting web sites to provide with possible fines for violating?

    I kind of want to add some info to one of the tickets there, again not sure which one would be the appropriate one, but would like to add that since they are thinking about data in regards to groups, we may need to consider stripping info that others may have posted, whether it be in groups, or in private messages, as someone could end up with an export of info that had been set to be deleted or otherwise blocked / removed from the other user – and so it may be innaopriate to include messaging from groups or otherwise that was not added by the user him/herself.

    Also I think we would need a way to include media, pictures used for avatars and used via plugins like rtmedia / mediapress in order to not just be thorough and kind, but to also be in compliance with the ggrp thing.

    <- obviously I am not a lawyer and not well versed in this thing as far as all that goes.

    However on another side I think exporting the data as a backup will potentially increase the suablity of buddypress exponentially as well. I am looking into helping spawn some methods for people to more easily launch a bp for their family musings and another instance for friend circles – this would be great during the term of hosting – but backups would be needed to prevent loss of presious family photos and such should a hack occur, or hosting not get paid, etc.

    So backups, and a method for auto exporting I think is the missing piece at this point to really push for a much greater adoption of BP, which is really close to being a viable, and more private / controlled replacements for FB at this point.

    the time is ripe for this.. hope we can make it happen before end of school year somehow.

    #270801
    buttercup17
    Participant

    Hi All,

    I’ve created a hidden group, with a hidden forum.

    When I ‘search forums’ it pulls up replies from the hidden group.
    How do I make it so only the members of the hidden group can search for replies in the hidden group?

    I don’t want non-members to be able to see topics and replies in a hidden group when searching.

    Wordpress Version 4.9.4
    Theme BuddyBoss

    Thank You

    #270790
    mbfit
    Participant

    Hello, in working with my theme support they informed that it is issues of Buddypress so I thought I’d see if I can get some feedback thoughts on them. I am currently under construction so will detail as much I can.

    1. On my members page when selecting to turn pages and view user profiles after search results, it won’t scroll back to the top. Turning pages results at staying at the bottom of the site page and you have to mouse wheel/scroll back up to view the profiles.

    2. Under Users private messages, group selecting Read/Unread/Delete bulk actions do not work.

    I can upload images if that doesm’t make sense to what I’m referring to.

    Thanks.

    #270742
    Venutius
    Moderator

    You can use one of the BuddyPress privacy plugins to set aspects of your site as private and visible only to logged in users. For example it’s a feature of BuddyPress Registration Options or BuddyPress Simple Privacy, or BuddyPress Members Only.

    leog371
    Participant

    Yep, I agree. Make the groups private.

    Venutius
    Moderator

    I think the easy way to do this would be to make the groups private

    #270576
    otty-dev
    Participant

    I tried to implement the following code:

    function buddydev_hide_members_directory_from_all_except_admin() {
    
    	if ( bp_is_members_directory() && ! is_super_admin() ) {
    		//should we add a message too?
    		//bp_core_add_message( 'Private page.', 'error' );
    		bp_core_redirect( site_url('/') );
    	}
    }
    add_action( 'bp_template_redirect', 'buddydev_hide_members_directory_from_all_except_admin' );

    in plugins> bp-custom.php. Just in case, I also tried to implement it by creating a new plugin folder > bp-custom.php in the child theme, but the member directory page is still visible to non-admin/non-logged in users.

    #270544
    Venutius
    Moderator

    I still wanted to be able to make some posts private to the site, so I installed LH Logged In Post Status so that users can have a choice who see’s their post.

    #270516
    Venutius
    Moderator

    Yes I had the same problem, so I’ve created a new version of the plugin which leaves the posts public, all other pages private unless they are specifically marked as exceptions.

    #270509
    Venutius
    Moderator

    Your question is not clear. Are page members – site members?
    The option public – did you mean private? obviously setting a group to public makes it publicly available, so not what you are looking for.

    I’ve been experimenting with the site privacy plugins and if you want a completely private network you should check out BuddyPress Members Only, this ensures all url’s except for the homepage are not accessible to not logged in members.

    ngoegan
    Participant

    Actually, it hasn’t. I checked again today and it’s public. Any ideas on how I can make the events pages private? Is there some code I could add to the page itself to require that users are logged in to see it?

    ngoegan
    Participant

    I tested it and they don’t get any email until I approve them, which isn’t immediate. So it’s. “Check your email that we sent you now.” and then they don’t get it right away until later when I approve them. I think there’s something glitchy going on with my install – I’ve tried a lot of plugins to achieve a private site with new user moderation. No one plugin does it all that I can find.

    ngoegan
    Participant

    WP 4.9.2
    Theme Twenty Twelve
    BP 2.9.3
    BP Registration Options

    When a user registers for our site, they see a message with a header that reads, “Check Your Email To Activate Your Account!”

    Everything I’ve read says that this can only be edited in the Po and Mo files? I downloaded PoEdit and tried to open the file but I get an error.

    How can I edit this title? I’m not sure why they are receiving this message in the first place because they don’t receive an email until admin approves them. Is this an error in BP Registration Options? Or is is there something wrong with our site? I have downloaded and deleted several private site and approve new user type plugins trying to find the right solution.

    Thank you for any help, it is much appreciated.

    ngoegan
    Participant

    WP 4.9.2
    Theme Twenty Twelve
    BP 2.9.3
    BP Registration Options

    I have a private social network site using the Buddypress Registration Options plugin. It only hides bp component pages from non-logged in users. I’d like to hide the Events page as well, which isn’t a bp component. Is there anyway to do this without adding a plugin that would conflict?

    Thank you.

    #270364
    klubnika74
    Participant

    Yes. There is a feature in BuddyPress where one user can send a private email to another user. Since my site is an online training site, I set it up such that my students can email privately to the course teacher (I use Social Learner theme). The problem is that course teacher do not always respond to emails and I need to be able to follow up to make sure that my students get their answers.

    #270346
    Paul Wong-Gibbs
    Keymaster

    Hi @klubnika74

    BuddyPress doesn’t allow a user to email another user directly.
    You may be mixing this up with the email notification messages, that BuddyPress sends out.

    By “send a copy of private message between users”, are you specifically referring to the Private Messages feature within BuddyPress?

    #270284
    Gunu
    Participant

    I use several private groups.

    If a member of a certain group goes to the page with all the groups he can see them all, that’s also good but when he looks at another group he sees – This is a private group and you must request group membership in order to join. – and the Request Membership button.

    How can I remove that button and change the text?

    I use the latest versions of WordPress and Buddypress

    Thanks!

    martijn1972
    Participant

    I have that installed already and that works fine on the Buddypress site itself.

    What I am looking for is a button on an external site that links directly to a users private profiel to post the the article on their activity time line.

Viewing 25 results - 676 through 700 (of 3,864 total)
Skip to toolbar