Search Results for 'private'
-
Search Results
-
Hi,
Is there a way to set your profile pic to private – or to lock it – but only let specified members see it?I’m really hoping there is!
AndyI need to “to hide the private group from logged in users as well”, pretty much it is a “modified hidden group” that should allow people request membership if people know the direct link to the group page.
Anyone knows how to do it?
When I (admin) write a private message, there is the option to check to send it to all user.
Well, I don’t know why, but now… it says that the message have been correctly created, but it is not shown to nobody. And in my messages there is not the one I created.
What could be the issue?
I want non-users of the website to be able to view a Private Group’s member list. But I cannot find anywhere I can catch this redirect.
So far I’ve found..
This no access redirect must be happening from a call to the function bp_core_noaccess
I found the filter bp_group_user_has_access within the function bp_groups_group_access_protection … But this does not appear to fire for the group members screen when a logged out user tries to access.
I’m currently on WordPress version 4.5.4 and BuddyPress version 2.5.2
Thanks in advance!
Topic: Resctrict private messages
Good day everyone, I’m new to BP and the forum as well!
I’m using WordPress with GravityForms to signup users for monthly subscriptions.
Basically I’m wondering if it is possible to do the following :
– When a new user sign up via GF > create a private group(business) exclusively assigned to this new user (which will be a group admin)?
– This admin would be able to invite users(employees) to be added to that exclusive group?
– Would it be possible to list GF submissions for other forms (uploads for instance) by users (employees & business owners) and/or by Group(business)?
– Any way to link a Dropbox folder created via Zapier for those specific users and/or group?
– In the end, we want to use BP capabilities to create a sort of internal communication tool in regards of those uploads made our way?Thank you so much in advance !
TaharTopic: Upgrade of private messages
1) If is text of private message too long, do read more
2) Seen date – please do date with time (date & time reading)
3) Why is there SSS? Please change text on “Mark as read” and “Mark as unread” It confuses people
4) When someone wants to see the messages in the conversation, please do that he will automatically jump down the page on the last message. Look how it works on Facebook, it also jumps down and you do not have to scroll down in order to write the answer.
5) Load more button – In some of the conversations I have more than 30 messages, then it’s confusing. Load newest button – Could you indicate a new incoming message as in the activities?
6) New messages at the top, old messages down. Similar as is the case activity. Reply form at the top as well.
Hello
I would exclude automatically, some categories of the blog post, in the activity stream. It’s possible?I saw that the same problem was seen here: https://buddypress.org/support/topic/possible-to-exclude-post-categories-in-activity-stream-and-make-a-user-profile-private-like-with-pri/
But applying the same function with the latest version of BuddyPress, it does not work. is possilibe?
I also tried to customize the Post Types default ‘post’, following this guide: https://codex.buddypress.org/plugindev/post-types-activities/
changing fields as well:
add_post_type_support( 'post', 'buddypress-activity' ); function customize_page_tracking_args() { // Check if the Activity component is active before using it. if ( ! bp_is_active( 'activity' ) ) { return; } bp_activity_set_post_type_tracking_args( 'post', array( 'component_id' => buddypress()->blogs->id, 'action_id' => 'new_blog_post', // or 'new_post' 'bp_activity_admin_filter' => __( 'Published a new post', 'emt-buddypress' ), 'bp_activity_front_filter' => __( 'Posts', 'emt-buddypress' ), 'contexts' => array( 'activity', 'member' ), 'activity_comment' => true, 'bp_activity_new_post' => __( '%1$s shared a new <a href="%2$s">post</a>', 'emt-textbuddypress' ), 'bp_activity_new_post_ms' => __( '%1$s sahred a new <a href="%2$s">post</a>, on the site %3$s', 'emt-textbuddypress' ), 'position' => 100, ) ); } add_action( 'bp_init', 'customize_page_tracking_args' );
Finally I tried to customize the content of the post, in activity stream, as always suggested in this post:
guide:https://codex.buddypress.org/plugindev/post-types-activities/
or this:
https://buddypress.org/support/topic/custom-activity-new-post-content-not-broken-after-update-the-post/This is my function:
function record_cpt_activity_content( $cpt ) { if ( 'new_post' === $cpt['type'] ) { $cpt['content'] = '<a href="' . get_permalink( $post->ID ) . '" class="activity-content-title" >' $post->ID). '</span><br />' . get_the_post_thumbnail( $post->ID, '') . '<br /> <br />' . get_post_field('post_content', $post->ID); } return $cpt; } add_filter('bp_before_activity_add_parse_args', 'record_cpt_activity_content');
The problem is that the added HTML
<a href="' . get_permalink( $post->ID ) . '" class="activity-content-title" >' $post->ID). '</span><br />
tags are not preserved when the post is published. Solutions?
Thanks for your attention and assistance
While testing my site, I came across something that needed to be addressed. When my groups decide that they want to be private, that usually means that anything and everything that is shared stays within that groups page.
This is currently not the case. When a group posts on their private page, whoever posted on the timeline will see that same post on their personal activity stream. How can I fix this so that groups are 100% private, and all posts stay on the group page?
Thank yuo
Hello,
I know Users get an Email if I write an private message to them but how is it possoble to mailing them if I post an Sitewide Notice?