Search Results for 'private'
-
AuthorSearch Results
-
June 4, 2016 at 4:43 pm #254131
In reply to: private buddy press
shanebp
ModeratorWP users are BP users, except for the profile fields you add in wp-admin > Users > Profile Fields
For granular control of both WP and BP content re logged-in vs. not-logged-in, have you tried BP Simple Private ?
You can get it here: WP Repo – BP Simple Private
Or here: PhiloPress – BP Simple Private
June 2, 2016 at 5:21 pm #254053danbp
ParticipantHi @littlemisslanna,
can you give more details please ?
Which type of forum do you use: bbpress as stanalone or group forums ?
Do you mean “edit” or “publish” ? – it’s not the same thing. They’re no notification when you edit (aka modify) a topic.
What do you mean by notification ? A private mail or the activity stream information (site, group, profile…) ?May 30, 2016 at 10:36 pm #253918In reply to: Last active not showing in admin profile
semperaye
Participant* correction. The last active IS showing for admin, I just didn’t see it because it’s inside the “cover image.” This happens when a user is logged into buddy press and views their own profile, this is because in that instance, the “cancel friendship,” and “private message” buttons do not show up.
May 30, 2016 at 5:31 pm #253903John James Jacoby
KeymasterThanks for the post, and thank you everyone that chimed in to alert the OP about the protocol for security concerns. Understanding it’s possible there’s a communication gap here, this topic does also read (to my eyes) as condescending & inflammatory, which is honestly not going to yield a very positive conversation. I think y’all did a great job staying positive, and I for one greatly appreciate that.
To be clear to anyone else that runs into this topic, what the OP sees is not a BuddyPress or bbPress bug; this is WordPress doing it’s best to show published content from public post types.
About BuddyPress:
* Neither BuddyPress nor bbPress modify this core behavior
* BuddyPress does not use this interface; bbPress does
* The .org sites have not disabled this, they just do not have any unusual content to leakThe gist:
* If plugins allow for private content, it’s up to those plugins to protect it
* If you create roles with content limitations, it’s up to you to confirm they’re workingFor anyone looking to modify or restrict content that appears in this list, use the
wp_link_query_argsandwp_link_queryfilters to do so.Here is how WordPress calculates the results in this list. Note that it only uses published posts from public post-types:
$pts = get_post_types( array( 'public' => true ), 'objects' ); $pt_names = array_keys( $pts ); $query = array( 'post_type' => $pt_names, 'suppress_filters' => true, 'update_post_term_cache' => false, 'update_post_meta_cache' => false, 'post_status' => 'publish', 'posts_per_page' => 20, );
WordPress has a built-in way to calculate privacy scope using
'perm' => 'readable'and even that is not used here (though bbPress does use this in its own loops.) WordPress instead takes a strict position of published public content by default.If anything unexpected is appearing here, it is not because of BuddyPress or bbPress, and we are still happy to help anyone discover the source of this in a new & more friendly topic.
May 26, 2016 at 8:51 am #253777In reply to: Private messaging for bulk recipients
Henry Wright
ModeratorAs far as I know, in order to reply to a specific participant only, they’d need to start a new private message. Unless that’s done, as you pointed out, the reply will go to all participants.
May 21, 2016 at 5:05 pm #253619In reply to: Error on installation
dredre3000
ParticipantRunning version 4.5.2
Theme Geodirectory/ supremember directory.
Plugins: Akismet, auto terms of service and privacy policy, contact form 7, black studio tiny mce, f(x) private site, gd booster, gd business hours, geodirectory plugins (don’t have buddypress intergration active), Google analytics, jet pack, site origin, page builder, Yoast seo…May 19, 2016 at 9:09 pm #253568Garrett Hyder
ParticipantHi @fullmoonfriday,
At the time I was able to just work around it as described by keeping the forum public but placing it into a Private Group and having the Groups Forum (parent) hidden.
Anyway I’ve recently updating WP/BP/BBP and attempted to reproduce.
When the forum is hidden it still doesn’t render anything which may be intended as it’s ‘hidden’.
When the forum is private I am now getting the shortcode to render properly and in full. So it appears the issue where a private forum is embedded through shortcode and only renders the ‘No Topics’ message has been resolved.This is good in my case at least since I can now switch all my forums back to private.
As to the hidden forum not rendering, I’m unsure if it should be displaying anything or not.So at the very least you can avoid hidden and stick to private groups. But if you require hidden as well will either need custom coding. Or you might want to open up a trac ticket to push the issue to bp-dev team.
Cheers
May 19, 2016 at 9:37 am #253539fullmoonfriday
ParticipantI have come across the same issue recently. Seems still to be the default. Did you find anything else to resolve this? Otherwise I guess it is a custom code job to get hidden and private group forums to be showing on a users profile.
May 18, 2016 at 6:14 pm #253527Garrett Hyder
ParticipantAs I’ve suggested forget about changing functionality of private groups and instead focus on public groups and employing the alternate control public group plugin to lock public groups down to require membership requests so they act similar to Private Groups. And then you won’t need to reinvent the wheel concerning Private Group functionality.
Basically look at your problem from another angle and focus on modifying Public Group functionality over Private Group functionality as you’ll have a much easier time with that approach.
CheersMay 18, 2016 at 6:02 pm #253526sprocketbuddy
ParticipantHow to change functionality of private group. I want Private Group content and activity should visible to members of any site.
May 17, 2016 at 6:17 pm #253462Garrett Hyder
ParticipantHi @sprocketbuddy,
As @imath notes in his video trying to get private groups to function ‘publicly’ is going to be quite difficult as it’s ingrained in the core.
You’ll want to start with his plugin (https://github.com/imath/altctrl-public-group) and customize to your needs. As Public Groups by default have Group content and activity visible to any user by employing his plugin you’ll achieve the options you desire with introducing membership requests to the public group but still display it’s members, content, activity.
Hope that helps get you started in the right direction. Try it out and let me know what roadblocks you hit and we can probably assist.
Cheers
May 17, 2016 at 5:59 pm #253460sprocketbuddy
ParticipantPrivate group options are:
1. Only users who request membership and are accepted can join the group.
2. This group will be listed in the groups directory and in search results.
3. Group content and activity will only be visible to members of the group.Want to change the third option like public group. Private Group content and activity should visible to members of any site.
May 17, 2016 at 5:24 pm #253457Topic: Private Messages Pages
in forum How-to & Troubleshootingmanicexpression
ParticipantAre there any ways to separate the Buddypress Private Messages system into pages? A long conversation can become daunting to scroll through. Also is it possible to set the newest messages to appear at the top?
May 17, 2016 at 3:37 pm #253452Garrett Hyder
ParticipantHi @sprocketbuddy,
Take a look at this plugin by @imath;
https://github.com/imath/altctrl-public-groupI believe it goes along with your needs. He found rather than hacking/rewritting permission things for private groups that it was easier to utilize a public group and just lock it down with more controls.
There’s a demo here;
Cheers
May 17, 2016 at 12:48 pm #253447danbp
ParticipantPrivate group options are
- Only users who request membership and are accepted can join the group.
- This group will be listed in the groups directory and in search results.
- Group content and activity will only be visible to members of the group.
To modify option 3, you can code something.
Read from here.May 17, 2016 at 7:33 am #253441sprocketbuddy
ParticipantI want to change privat group setting. Its third option should work like public group. I want Group content and activity will be visible to any site member of private group. Is there any way to change this setting eithrt from admin or using coding?
May 11, 2016 at 10:20 am #253297fullmoonfriday
ParticipantUpdate.
– The group list private/hidden can now be seen in the edit mode of the topic. Although the group stops access to actually posting the topic onto the group the users doesn’t have access to. So as far as I can tell, although direct url access I haven’t tested, the user cannot read the private forums, topics from a group.things that eed to be resolved
– removing the groups list forums from the edit mode as showing all the private and hidden group on the site isn’t ideal.
– the user can now see and view any private forums that are in non-group forums.
– possible direct url access to the group forums.May 11, 2016 at 10:04 am #253296fullmoonfriday
ParticipantHello,
I was experiencing the same issue, although this is quite an old topic now, I thought I would add my bit.
– So site admin gets to see all the topics, and forums from all groups types without issue
– normal user just see’s the public groups on their profile. – fine for someone that is viewing their profile but not for the user, who would like to see all relevant stuff from the site on one place.
– I have found adding the capability to read private topics, and hiddden topics to the subscriber role sorts out the problem. Using the “members” plugin to scope the roles out.This is after building a clean site and going through all these setups to ensure it was not custom development that has caused any issues.
– So now I need to now if the user can now see all private forums/topics from all hidden groups / private groups at any point. This would obviously be a major problem for users with private content.
I will look into this further, but it is frustrating that these points are not covered in bbpress setup as a few lines of information on this would have cleared up this issue straight away. I do value the fact everyone is doing this in their spare time though.
May 10, 2016 at 3:06 pm #253281In reply to: PHP 7.0 compatibility
Henry Wright
ModeratorDo you have the private messages component activated?
May 10, 2016 at 10:57 am #253276jameshh93
ParticipantOkay I managed to create a add friend button using some code found on this website.. but im still a little stuck on creating a send private message button? any help would be great! thank you!
May 9, 2016 at 6:29 am #253231jawynan1
Participantfunction bp_custom_get_send_private_message_link($to_id,$subject=false,$message=false) { //if user is not logged, do not prepare the link if ( !is_user_logged_in() ) return false; $compose_url=bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?'; if($to_id) $compose_url.=('r=' . bp_core_get_username( $to_id )); if($subject) $compose_url.=('&subject='.$subject); /*if($message) $compose_url.=("&content=".$message);*/ return wp_nonce_url( $compose_url ) ; } //for auto populating message content add_filter(‘bp_get_messages_content_value’,’bp_custom_message_content_value’); function bp_custom_message_content_value($content){ if(!empty ($content)) return $content; $content=$_REQUEST[‘content’]; return $content; }May 5, 2016 at 8:41 am #253147In reply to: Removing options for private and hidden groups
vaughancavca
ParticipantYes, just doubled checked, it’s in the correct place and the private and hidden groups are still there.
May 5, 2016 at 2:22 am #253144In reply to: Using Buddypress forums with LearnDash courses
writerscentre
ParticipantThanks @shanebp. Yes, I contacted LearnDash over night and they suggested we look BuddyPress.
They said:
“I would look into BuddyPress. This has private groups and you can associate courses with different groups as well as allow each group have a private forum. You can find our add-on for BuddyPress here:
http://support.learndash.com/buddypress/”I had a question about associating courses with different groups. I could only associate a course with 1 group. Is it possible to associate a course with multiple groups?
We would have the course Creative Writing
And multiple groups that we’d like to associate with it. Is that possible?What does the association actually do? Do we need to associate the group with a course?
Thanks for your help!
May 4, 2016 at 2:36 pm #253130In reply to: Using Buddypress forums with LearnDash courses
shanebp
ModeratorHave you tried making the groups Private?
Have you asked LearnDash?
They have a BP extension, afaik.
And may be able to make suggestions.May 4, 2016 at 8:49 am #253124In reply to: Removing options for private and hidden groups
vaughancavca
ParticipantI’ve tried doing that and removing everything related to the Private and Hidden options, but it hasn’t changed on the group creation page, still exactly the same.
-
AuthorSearch Results