Search Results for 'private'
-
Search Results
-
Is it possible to make a restrictions on the number of private messages a user/member can send each month. Is it also possible for public messages and so on?
E.g. restrict that a free member e.g. only can send 3 private messages each month to all other member levels and e.g. a gold member can have unlimited messages per month etc.??Hi!
I have WP 5.1.1 and BP 4.2.0 and I am trying to set up a private site.My problem is that I wan´t to activate my users manually and I got stuck. Also I would like to change the text that appears when a person has registered.
I have tried ALL possible ways of settings and I even installed BP Registration Options – plugin.It does not work!!
Also, in the e-mail settings. If the user is not activated directly I could use the opt. for creating an account to send a manual pending e-mail. But then I still need to change the banner and notification text thar appears when user has clicked register.
Ok, so to complicate it further – I do not know how to write code….
Please help me!
Topic: Groups visibility by role
Hello, I’ve 3 custom user role. I created BP groups but for each role, all groups should not be visible by all users.
For example : 3 roles : role1, role2, role3 – 6 groups : group1, group2, group3, group4, group5, group6
Each user with role3 can create its private group, not visible for role1 and role2. He can see all others groups. So it’s group could be masked if he can see others groups.
Users with role2 cannot see groups created by users with role3 and cannot see group3, group4.They can see only groups 1,2 and 5. They are automatically added at group1 thanks the module Member Type Pro
Users with role 1 are automatically add in group3 and can see oly itzs group and group4.
Is there a plugin or a function to add that in the admin WP ?
Like the plugin Menu Nav Role wich allos to display menu items by role.Thanks for your reply. I hope my answer is understandable because I’m french 😉
First time poster! Hello everyone 🙂
I am using: Marketplace One Social theme, WC Vendors, Woocommerce, BP Better messages (websocket upgrade).
Is there a way to make the ability to start conversations only for admin? I am designing a freelancer type website where I only want the Admin to be able to connect buyers and sellers into a private conversation after the purchase has been made (to avoid circumvention). I want vendors and subscribers to have access to their messages, just not the ability to start a new one.
I am thinking maybe CSS to hide compose features? Could that be the easiest solution?
Thanks in advance for any ideas!
How can I limited the activity feed to only display activities in the groups the user belongs to?
Our site groups need to be very private. Being able to view a friend’s activity is a great but not if the friend’s activity is a private group that the user does not belong to.
For example, a friend belongs to a private group named ‘secrets’ but the user does not belong to the group.
Now the friend creates a topic (bbPress) in the ‘secrets’ group forum discussing a ‘new formula’. The user will now see the topic posted in their activity feed. The new secret formula is now revealed outside the ‘secrets’ group.
I hope this makes sense.
Hello to all.
i seem to do not understand how this one should work:
wp 4.9
bbpress 4.1.0We are using Woffice Theme with buddypress.
User ist member of private group, group has forum, role ist participant. when the user searches for Topics or Replies he does not get any results. Neither with Woffice search bar on top nor with forum search. results show only topics/replies from public group forums.
Admnistrator/keymaster gets the right results, so it`s technically working. probably a rights problem.
What am i missing? Shouldn`t that work?
Thanks in advance
Franz
Topic: Bug in private message
Hello,
I noticed a bug. When you write a private message to a member and forget to fill in the Title by pressing Send. This automatically removes the recipient from the message.
Do you have a solution ?
Thank you.
Hi everyone! does anyone here experience the same thing when you compose a message then you view the thread you will notice the text above the subject like this (Conversation between you and Deleted User and you.) it has a redundant (you) how to fix this? does anyone experience the same thing? i am using buddypress Version: 4.2.0 and wordpress 5.1 thank you guys..
Topic: Restricting private messages
I am looking for some help with restricting private messages.
I have Paid Memberships Pro – BuddyPress Add On Version 1.2.1 and BP Better Messages (Premium) Version 1.9.7.9 with WordPress 5.1
BuddyPress Version 4.2.0I am looking for a way to restrict the private message option for certain type of users. I am trying to have this modification multiple ways, with and without PMPro but none of them working so far.
With PMPro I supposed to restrict easily, still I can only totally restrict all BuddyPress functions or enable all of them, customization looks like broken.
I looked into the codes of all the mentioned plugins, tried to restrict access by using below code that I found in another topic:
add_filter( 'bp_get_send_message_button', function( $array ) { if ( pmpro_hasMembershipLevel('Premium') ) { return $array; } else { return ''; } } );
Maybe I am just trying to make it too complicated and there is an easier way to do it with shortcodes under the Members page that currently contains only [bps_directory] shortcode.
Any suggestion and help would be welcome.
I have a membership site that has several private groups for paying members. Their access is restricted by their membership role. So for example, only people with the “approved” role can access “Group 1”.
The challenge is that if the customer no longer pays for membership and we change their role to “not approved” they still have access to, and receive email updates, from that group because their group access ignores the roles if they are already a member.So I need a way to easily scan the email addresses (our paying members are by company so the email domain is the easiest way to ID and verify who should be in the group) when looking at group members.
Is there a way to do this? Or is there an update that I can make so that group Admins can see the user email address next to their name when viewing the member list? I’d only want the group admin to see this, of course.
Topic: Avatar filter
Hi
I want to let the members must upload the avatar,otherwise they can`t send the private message.
How can I do ???
Can I do it from function.pnp ?
Topic: BP Private message issue
Hello, is there anyway, code or settings that can restrict private messages to just user to admin alone. i will like to avoid user to user conversation on my site.
Thanks!Hi
I make member profile page private for everyone with this snippets in my child theme functions.php file:
function remove_xprofile_links() { remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 3 ); } add_action( 'bp_init', 'remove_xprofile_links' ); function my_private_profiles() { if ( ! bp_is_user_profile() ) return; if ( current_user_can( 'manage_options' ) ) return; if ( bp_loggedin_user_id() == bp_displayed_user_id() ) return; bp_core_redirect( home_url() ); } add_action( 'init', 'my_private_profiles' );
But I need to disable the members access to a single user front page. Can you help me?
Thanks in advance!