Search Results for 'private'
-
AuthorSearch Results
-
March 12, 2015 at 2:59 pm #235875
In reply to: display only one group activity stream on homepage.
rosyteddy
Participant@martni You can get some ideas here:
https://premium.wpmudev.org/forums/topic/adding-a-single-group-activity-stream-to-bp-social-home-page
https://buddypress.org/support/topic/resolved-filter-custom-activity-stream-to-display-only-new-groups-new-topics-new-replies/Another way may be, making the other groups private, if that suits you / your site at all.
Thanks
March 11, 2015 at 1:41 am #235825rosyteddy
Participanthttp://seventhqueen.com/support/forums/forum/kleo/kleo-general-questions
Hi @sjjenkins
This should not be very difficult. Some small change in the template file but since they have no downloadable version its difficult to say.
This may contain some clue –Showing some profile fields in member’s profile header not working after update
Just curious, how does the Whats New box looks like when you use
buddypress-activity-privacy, buddypress-activity-plus and any Media plugin like rtmedia ?
Whats your site (if its not private) url ?Thanks.
March 7, 2015 at 10:04 pm #235620Henry Wright
ModeratorHi @pieter
Try this
function filter_private_message_email_body( $email_content, $sender_name, $subject, $content, $message_link, $settings_link, $ud ) { $content = substr( $content , 0, 140 ); $email_content = sprintf( __( '%1$s sent you a new message: Subject: %2$s "%3$s" To view and read your messages please log in and visit: %4$s --------------------- ', 'buddypress' ), $sender_name, $subject, $content, $message_link ); return $email_content; } add_filter( 'messages_notification_new_message_message', 'filter_private_message_email_body', 10, 7 );This will make the message 140 characters. Feel free to change the 140 to another number.
March 7, 2015 at 2:46 pm #235603danbp
Participanthi @rosyteddy,
guess the mytery sit here: http://localhost/wordpress/userA/Multisite (subdomain or subdirectory) need that wordpress stays at the site root. At least for a default install.
SSite: hxxp://my_site.com
MS: hxxp//my_site.comMS subdomain: hxxp//wouah.my_site.com
MS subdirectory: hxxp//my_site.com/wouah/A local install (wamp, mamp or xamp) is mostly in a ‘www’ folder at your hard disk root C://
(recommended path) Refer to your software documentation for more details about installing Wamp/Mamp/Xamp – at least about localhost in URL. In the latest version (wamp 2.5), this is no more used. In my case, the local URL is http://my_site/wp-admin/….C://www represent the private part of the site path. The equivalent of /var/your_account/htdocs/ on a production server.
The same path scenario goes localy
C://www/my_site (avoid confusion and don’t use WordPress as site name)
My_site folder contains all WP directories and files:My_site/wp-admin
My_site/wp-content
My-site/wp-include
My_site/wp-config.php and so on…At the end of the install, you got a htaccess file containing:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressThe important things here are rewrite engine on and rewrite base /, where the slash means “start to manage site URL’s form this point”, which is /…/…/var/your_account/htdocs/<- from here !!!
Before installing BuddyPress, activate pretty permalinks to what you want, EXCEPT default. Save. I do this before, because WP likes also pretty permalinks, and so i don’t forget to do it after i finished with a BP install.
Install BP and setup (or at least control if they exist) the choosen component page(s).
If you do this, you won’t have 404 or other issues, no matter if you use MS or subdirectories or subdomain. WP alone will work, and BP too.
The most important advice if you want to work localy, is to setup correctly apache (mod_rewrite is not activated for ex.). And if you use it with windows, to double-check anything, including HOST file where you have to declare manually each of your local sites (since wamp 2.4 – don’t remember exactly)
# localhost name resolution is handled within DNS itself. 127.0.0.1 localhost ::1 localhost 127.0.0.1 my_site ::1 my_site 127.0.0.1 my_other_site ::1 my_other_siteMarch 7, 2015 at 1:36 pm #235598In reply to: [Resolved] Friend button styling
KS
ParticipantThanks Dan.
I did search across every file (using Brackets), so I found the .js and .php files where it’s used, but those classes were not found in any CSS file in my installation. Sorry, ‘looking’ was probably misleading. I meant I had searched thoroughly, using any one of a number of appropriate tools 🙂
I did find *some* of the attributes of the button, but not, for example, where the ‘Add friend’ button is getting its colour from, which is different to the ‘Send private message’ button for example. Some CSS has to be differentiating those two buttons, surely? And the colour in mine doesn’t appear anywhere in any CSS except for a class that isn’t applied to these buttons at all.
March 5, 2015 at 8:40 am #235488In reply to: Actifity feed, Note vs message
whoaloic
ParticipantThank you Henry for your answers.
Note is what I call “What’s new” message in Activity Stream.
That’s why you called public message or mentions?
It’s like a tweet finally ?For private messages, I notice that user could send a message to all users so I was wondering what’s the point of Friends connexion.
I was thinking that only users who are friends could send messages.Than you for the “favorite” button trac. It looks encouraging.
March 4, 2015 at 5:24 pm #235457danbp
ParticipantHi,
leave groups & request membership use the same button, depending the context. See reference.
Try this if you use only private groups
function xyz() { global $groups_template; if ( bp_is_active(group) ) return ''; } add_filter( 'bp_get_group_join_button', 'xyz' );Reference: wp-content\plugins\buddypress\bp-groups\bp-groups-template.php:2747
March 4, 2015 at 3:00 pm #235453In reply to: Actifity feed, Note vs message
Henry Wright
ModeratorHi @whoaloic
What do you mean by “note”?
Messages can be either public or private. Private messages work kind of like chat, and can be seen only by the ‘thread’ participants. Public message are ‘front-end’. You can public message someone by prefixing their username with the @ symbol. Public messages are also known as mentions.
Regarding favourites, see this Trac ticket for how the feature will be improved over the next few versions.
Hope this information helps.
March 4, 2015 at 9:58 am #235448whoaloic
ParticipantHello,
I would like the users not be able to leave groups or request membership buttons.
I have set groups to private.Cheers
March 1, 2015 at 8:31 pm #235312In reply to: Search Activity/ Groups
Jozef de Beer
ParticipantI am having the same issue. The regular WordPress search box will not display any content from my Groups page. I think it is hilarious that when I go to create a group, under settings the public and private options say that group content will show up in search results. I have tried relevanssi and that didn’t help.
February 25, 2015 at 9:47 pm #235154In reply to: Trouble Creating new groups
Reginald
ParticipantYes for now what I have Managed to do is to open a private browser and log in to my account from there and create a group that way it will allow me to create new Groups, but I just can’t create them regularly, and it will not let me go pass the Settings Screen, but when I go to check my Groups the New one is Added.
February 22, 2015 at 9:47 pm #234995rosyteddy
ParticipantImho, it is a debatable issue. Is the software/program designed such as to allow the admin to read PM only if there is a complaint ? Is it explicit in the terms and conditions that admin can read PM in which case some users may not like to register?
An user should have initial ways of blocking another harassing users like ello.co does rather than admin jumping into read PMs. In some countries it may be illegal or serious breach of privacy issues. Then there are much “grey” areas as to what is “drama” or what is a “legit” complaint.
February 22, 2015 at 7:24 pm #234990bp-help
Participant@vitamincee
As @henrywright mentioned that is by design. Otherwise how would you be able to solve issues between users as an admin if one of your users complains that another user is sending harassing private messages. If you was locked out of viewing the private messages as an admin then you really couldn’t determine if its a legit complaint or someone just causing drama.February 22, 2015 at 6:48 pm #234988Henry Wright
ModeratorHi @vitamincee
As an admin, you have access to your member’s private messages. That’s by design. Why would you want to restrict access to anything for an admin account?
February 22, 2015 at 5:46 pm #234978In reply to: mentions not working
bp-help
Participant@aymanomar85
@mentions works for me using the latest WP/BP, twenty-fifteen theme, Private Community For BP plugin, and BuddyPress Identicons plugin. Very basic setup for myself so you will need to provide more info on your setup so others can help. 🙂February 22, 2015 at 11:53 am #234952In reply to: cant create topics for standart users
peter-hamilton
ParticipantI seem to believe that groups are only usable by its members and therefor also any group forum.
Public only means that the group will be listed and viewed by the public, only mebers of those groups can actually post on their forums.
Better make a regular forum with that name where all can post, and have a sticky post for people to join the actual group to start topics in their “private but publi” forum.
At least that is what I think, but I might be wrong.
February 19, 2015 at 12:29 pm #234775In reply to: private message name field
Henry Wright
ModeratorHi @matthias70
Private messages can be sent to multiple recipients. The field you mention is for entering more usernames to send the message to.
February 16, 2015 at 9:32 am #234554In reply to: Create BP_Messages_Message object
danbp
Participanthi @abhimanyubind,
i’m not developer, but i think th e answer is yes.
For example, to allow admin to receive a copy of messages sent by users
function arc_wp_mail_filter( $args ) { $args['headers'] = 'Bcc: <admin@yoursite.com>'; $new_wp_mail = array( 'to' => $args['to'], 'subject' => $args['subject'], 'message' => $args['message'], 'headers' => $args['headers'], 'attachments' => $args['attachments'] ); return $new_wp_mail; } add_filter( 'wp_mail', 'arc_wp_mail_filter' );Here an old topic with a similar question and answered by our core ninja’s.
Hope this will help you !
February 16, 2015 at 5:07 am #234546In reply to: Private messaging user blocking/ignoring?
majecdad
ParticipantHey,
@shanebp as I understand it, your plugin serves as sort of a ‘blacklist’ where you can block any user in a variety of ways. Have you considered making it the other way around? Whereby ALL other users were blocked from sending a Public or Private Message *unless* the User clicked on a button that added the other user to a ‘whitelist’?If the user B clicked on a ‘Message’ button, they would be precluded from sending a message to User A unless User B had already been whitelisted by the recipient/User A. Maybe with the attempt generating a prompt to User B to submit a whitelist approval request to User A.
Maybe something like this already exists?
Something for consideration. Thoughts?
Thanks.
February 11, 2015 at 4:43 pm #234310In reply to: How to hide member page from logout users?
bp-help
Participant@buddies
If after following Hugo’s advice does not resolve your issue then place the below snippet in bp-custom.phpfunction bphelp_members_page_private_redirect() { if ( bp_is_members_component() ) { if(!is_user_logged_in()) { bp_core_redirect( get_option('home') . '/register' ); } } } add_filter('template_redirect','bphelp_members_page_private_redirect',1);Good luck!
February 11, 2015 at 4:00 pm #234304In reply to: How to hide member page from logout users?
Hugo Ashmore
ParticipantThis is a question for S2 Member then and you should check it’s extensive documentation on how to block pages, if that proves unsuitable for your purposes then check back here and people can point you in the right direction to write custom functions to make pages private.
February 11, 2015 at 12:17 am #234252In reply to: Me and my friends activity steam?
mcpeanut
Participant@bphelp does this also stop public groups from displaying in your activity stream if you are not a member too?
the reason i ask you this bphelp is because remember the old plugin you was working on (i think it was a fork of some code rich fuller posted a few years ago) which was named “activity-privacy-component” ? you left it on github and described it as a jurrasic plugin because of the new plugin “buddypress activity privacy plugin”.
Well that very same “Jurrasic plugin” still works very well today and is still far far far more superior at keeping your stream private compared to the plugin you said was better.
The only one thing that the old “activity-privacy-component” plugin doesnt do is keep the public groups you are not a member of from out of your private stream.
February 9, 2015 at 11:23 pm #234209mrjarbenne
ParticipantA potential implementation could have each class set up as a Private or Hidden Group. Each teacher attached to the class could be added as either an admin or a moderator of the group, giving them access to these private spaces.
We have used that in our school board with great success.
February 9, 2015 at 7:42 am #234169In reply to: Modify the activity loop
deshmukh
Participant@danbp this is intentionally another reply. Again, this is likely to be lengthy. So, please bear with me.
Consider member1 is a member of private group PGA, and public group GB.
site.com/activity includes updates in GB, and updates by other members.
members/member1/activity/groups/ includes updates in PGA and GB.I wanted to merge the two — without duplicating content from GB. Any way to achieve that? Its perfectly OK if we can get that feed at site.com/activity or some other URL.
On a side note, the advantages are:
An one place, member1 gets to see ALL updates (whether private or public) AND we avoid duplication (GB is displayed both at site.com/activity and members/member1/activity/groups).February 8, 2015 at 6:08 pm #234135In reply to: Error after updating to buddypress 2.2.0
Magic-Komplex
ParticipantTheme: Weaver II
Plugin-list:
Agreeable
amr shortcode any widget
bbp Private Forums Visibility
bbPress
bbPress – Unerwünschte Inhalte melden
bbPress Advanced Capabilities
bbPress Direct Quotes
BbPress Notification
bbP Signature
Beautiful Widget CK
BuddyPress
BuddyPress – Private Aktivitäten
Facebook Like Box
GD bbPress Attachments
GD bbPress Widgets
Google XML Sitemaps
Invite Anyone
Login With Ajax
Page Links To
Page Restrict
PayPal Donations
Privates BuddyPress
Q and A FAQ and Knowledge Base for WordPress
rtMedia for WordPress, BuddyPress and bbPress
Super Socializer
Use Google Libraries
Weaver II Theme Extras
WordPress Backup to Dropbox
wp-MonalisaI know that’s quite a lot of plugins, but how can I reduce them, if I need the functionality? Is it possible that the problem comes from just too many plugins?
-
AuthorSearch Results