Search Results for 'private'
-
AuthorSearch Results
-
July 1, 2015 at 8:47 pm #241360
In reply to: [Resolved] Site Privacy
Paul Bursnall
ParticipantThis works for me:
if( is_user_logged_in() ) { $page = get_page_by_title( 'Dashboard'); update_option( 'page_on_front', $page->ID ); update_option( 'show_on_front', 'page' ); } else { $page = get_page_by_title( 'Home' ); update_option( 'page_on_front', $page->ID ); update_option( 'show_on_front', 'page' ); }Added to functions.php if anyone else references this post.
I use My Private Site to keep the bulk of the site hidden from visitors / search engines – https://wordpress.org/plugins/jonradio-private-site/
Thanks for your help.
July 1, 2015 at 8:52 am #241328In reply to: BP crashes Forumsearch
danbp
Participantbbpress is the plugin, by type was meant site wide forum or group forum.
can I provide you a link via pm or mail?
No ! You’re on a free help support, maintained by volonteers.
If you want private assistance, use the job board forum where you can hire a freelancer or a dev, but probably not for free.
June 30, 2015 at 9:43 pm #241307danbp
ParticipantWhich result when you use Twenty Fifteen theme ?
Do you use some custom functions on group page ?Also, as of Codex https://codex.buddypress.org/administrator-guide/groups/
This is a private groupOptions
Group content and activity will only be visible to members of the group.
June 28, 2015 at 11:00 pm #241227In reply to: Mark Particular Messages as Read
Henry Wright
ModeratorThe
messages_mark_thread_read()function will mark a message thread as read. It accepts the thread ID. So, to mark read all new private messages if they have a given subject, you could do this:function creativesinside_mark_read( $message ) { // Be sure we're working with an array. if ( is_object( $message ) ) { $args = (array) $message; } else { $args = $message; } // Mark as read. if ( $args['subject'] == 'comment on your post' ) { messages_mark_thread_read( $args['thread_id'] ); } } add_action( 'messages_message_sent', 'creativesinside_mark_read' );June 25, 2015 at 12:42 am #241059In reply to: Chat Plugins with one-to-many messaging?
jacipetersilie
ParticipantHello everybody,
@mariatrier, I am also paying cometchat for that and will let you know how it goes. They estimated 8 working hours, begun work a week ago and haven’t replied ever since to my question how far they are.
@djsteveb
Thank you for your time. From your feedback I understand that my description wasn’t accurate. i really mean something like facebook chat. So no admin->many private message. I will check out that quick chat plugin.June 23, 2015 at 1:27 am #240989In reply to: Chat Plugins with one-to-many messaging?
djsteveb
Participant@jacipetersilie – best thing I have seen that is close to fbook like chat thing is the free “quick chat plugin” – however I do not use it to show as a widget on all pages and give a popup to users – as I think that would tax the server and web browser more than is reasonable if you have dozens of users – it might work, might not. I use quick chat for a single chat room on a single page.
From what you are describing however, I wonder if you really need a chat plugin to do what you are saying – one to many message – like the super-admin send a message to all users, kind of privately… I think there are some plugins in the wild that allow admin to send an email (Which I guess would be a buddypress inbox notification (?)) – to all users… that would “one to many” message – and give people a way to “message you back” privately I think.
I have also seen a plugin that will allow super admin to add a note to all dashboards – although I guess many bp users will not go to their dashboard when using most features –
I suppose you could also assign users to a group, and select settings for them to get a notice email when a new group message is sent. Which may achieve what you are describing.
If you just want one-to-many messaging chat with users who are actually logged into a chat room, I think it would be easy to do that with nusoft’s av-chat, there are settings in which you can make it so only certain users can post in the chat, have moderated chat, turn off pms and stuff like that – I guess I am not clear on what exactly you are trying to accomplish as I don’t use fbook and am not familiar with the kind of one to many fbook messaging you are talking about.
June 22, 2015 at 7:53 pm #240977In reply to: Search on group members page does not work
LeeBinder
Participantno – you need to be logged in as a user to test http://transinformation.net/community/gruppen/d-a-ch-im-licht/members/
No private mmsging here, so reply with your email address so I can send you a login. You can delete that post with your email address right away because I get it via email.
June 22, 2015 at 7:19 pm #240968In reply to: Search on group members page does not work
LeeBinder
ParticipantHenry, how I can I send you a login PW so the link is accessible for you? There does not seem to be a private msg function here, and when I try send it to you via email to [edited], the email bounces right away.
Thanks,
LeeJune 15, 2015 at 12:05 am #240718In reply to: Why is there no ajax on profile tabs?
Henry Wright
ModeratorI can view anyones messages when logged out.
And you’re definitely talking about what BuddyPress refers to as private messages?
Can you try again after disabling all plugins, reverting to TwentyFifteen and removing all custom code? If you still get to see private messages when logged out then that shouldn’t be happening.
June 14, 2015 at 11:21 pm #240716In reply to: Why is there no ajax on profile tabs?
Henry Wright
ModeratorWith standard buddypress (no modifications) you can freely view anyone’s messages without even logging in
That shouldn’t be the case for all users. Only users with admin capabilities should be able to do that. Are you able to see people’s private messages when logged in as a subscriber? If so, that’s a bug
June 14, 2015 at 11:08 pm #240715In reply to: Why is there no ajax on profile tabs?
CodeMonkeyBanana
ParticipantWith standard buddypress (no modifications) you can freely view anyone’s messages without even logging in. Personally I think that is not very good security/privacy, whatever you want to call it.
I made a ticket as I don’t think that “private messages” should be publicly viewable
(https://buddypress.trac.wordpress.org/ticket/6504#ticket)What privacy/security checks would you recommend for people who don’t want users private data publicly viewable?
June 14, 2015 at 8:57 pm #240712In reply to: Why is there no ajax on profile tabs?
CodeMonkeyBanana
Participant@henrywright How would you do the security check? If I follow current way buddypress does things with loading the template part for the tab any logged out user can just modify the javascript and get into any profile page they like. It’s first time I’ve done this so appreciate the advice.
what harm could come from a visit to a simple profile tab?
You could see hidden data that user did not want displayed. I believe if you hold data and say it is private then you should attempt to secure it. You could also view their messages and private groups.
The thing I am struggling to understand is how buddypress functions work on the post request. I wrote some test code and data is correctly populated from displayed user. Does buddypress read a referrer value somewhere on every ajax post?
June 11, 2015 at 12:37 pm #240593In reply to: @ mentions in groups problem
Julia_B
ParticipantI’m not sure @danbp, as you can see that post was from 8 months ago and the issue with group mentions has only appeared since I installed the latest buddypress update a few days ago.
I don’t think it can be the them because the issue still happens when I switch to the default Twenty Fifteen theme. And I have tried deactivating all the plugins and that hasn’t resolved it so I don’t think it’s that. But I’m not a developer, you clearly know more about these things than I do!
If you could have a look that would be great. Is there a way I can send you a test user account privately?
Thanks for your help.
June 10, 2015 at 9:04 pm #240573In reply to: Hiding members header on certain pages
The Dux
ParticipantThanks for replying. I was thinking of removing, later maybe having an alternate version, header for a number of pages. All messages, inbox, outbox etc. Also notifications, friend requests etc. Pages that will be private to you as a user.
I have run into something though, I can’t seem to make a hook work?
function testFunction() { echo "Hello World!"; } add_action(‘bp_init’, ‘testFunction’);I’ve put this in /plugins/bp-custom.php which also have other functions that does work.
June 9, 2015 at 8:04 pm #240503In reply to: Question About Best Setup
Henry Wright
ModeratorWe need Groups and also Private Groups
I’d activate the Groups component.
Need to be able to upload face pictures
With BuddyPress, uploading profile photos is possible by default.
Hope this helps?
June 8, 2015 at 7:55 pm #240469In reply to: Buddypress notifications not working
sylkitt
ParticipantSo Kleo support says Buddypress NEVER had notifications for comments or likes, only for private messages and friend requests. Is that true? Comments and likes are an important part of a social network and my client wants all of them to be fully functional, not only private messages and friend requests.
June 4, 2015 at 7:48 pm #240223r-a-y
Keymaster@dono12 – I have split your post into a separate thread.
About the “Starred” feature, do you mean the star private messages feature that you can access under “Messages > Starred”? If not, then this isn’t related to any change in BuddyPress 2.3.0.
Your issue doesn’t sound like it is related to the Messages component, so can you clarify?
June 4, 2015 at 11:03 am #240186notpoppy
ParticipantI’m still trying to get to the bottom of why some of my users are being shown this message:
“You cannot reply to this topic”
As I mentioned above, whenever I run the “Remap existing users to default forum roles” option in /wp-admin/tools.php?page=bbp-repair I end up with a blank screen. It seems like this could be related to the problem – can anyone explain what this option does and how to fix it so it runs correctly?
@danbp Thanks for the offer of help. Can I pass on this information to you privately somehow?May 31, 2015 at 1:09 pm #239948danbp
ParticipantHi @godsdead,
This should not be displayed to non-members. Normally, it is not displayed !
By default, BP private group content is only forOnly 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.Could it be possible that Paul invited mr dork to join the group ?
May 29, 2015 at 8:33 am #239824Henry Wright
ModeratorHi @jaykdoe
You could try this:
function my_private_profiles() { // Bail if not a profile page. if ( ! bp_is_user_profile() ) return; // Allow admin users. if ( current_user_can( 'manage_options' ) ) return; // Allow the profile owner. if ( bp_loggedin_user_id() == bp_displayed_user_id() ) return; // If we get to here, redirect to homepage. bp_core_redirect( home_url() ); } add_action( 'init', 'my_private_profiles' );You can copy and paste it into your theme’s functions.php file. Please note I haven’t tested.
May 28, 2015 at 11:55 pm #239809jaykdoe
ParticipantI would like all member profiles to be completely private. Members should only be able to access their own profile and nobody elses. Admin accounts should have access as well, but all profiles should be completely private to all other members.
I have done some research and have found a few people looking for similar solutions, but none exactly like this. Additionally, it appears there may have been some plugins in the past that would have helped but I can no longer find them in the wordpress plugin repository.
Does anyone know of any plugins or custom code I could add to bp-custom.php to accomplish this?
Thanks in advance!
May 20, 2015 at 8:46 pm #239467Mickey
ParticipantThat should not be an issue whatsoever with 2 John Smiths, two should should up and you click on whichever one you want. Most people I know actually deactivate the activity system. When they message the private message by clicking on profile, most communities are not the type everyone knows everyone, its actually the other way around, those types are in minority and buddypress seems to cater to them.
Its actually a very simple solution, implement an option, with username and another one first and last name.
May 20, 2015 at 8:21 pm #239465Henry Wright
ModeratorThe username serves multiple purposes:
- It’s needed internally for use in URLs etc. First name and surname won’t play nicely in this context because you can’t have spaces etc in URLs.
- It’s used as a ‘friendly’ unique identifier. What happens when you have 2 members named John Smith? How do you private message the first John Smith without private messaging the second?
- There are probably more purposes I’m missing?
May 18, 2015 at 1:33 am #239354In reply to: [Resolved] cannot change profile photo
rebekahmeuir
Participantmine says define(‘WP_DEBUG’, false);
and script_debug is not found in my wp-config.php
With my issue, I am not getting any error message, and there is no error message on the server either. When I try to change a profile photo using BuddyPress, it just does not allow me to change it. It kind of “blinks” instead of bringing up the crop screen.
Similarly, when I try to send a private message in BuddyPress, it lets me compose the message, but when I try to send it, it “blinks” with no error message but does not send the private message. The private message disappears and does not go into my sent folder, either.
May 17, 2015 at 11:09 pm #239339In reply to: [Resolved] cannot change profile photo
rebekahmeuir
Participantthank you @mercime I did try the 2015 theme after deactivating all plugins except BuddyPress, and same issue. Yes I can upload images and see thumbnails with 2015 theme and with my BuddyBoss theme. I still have the problem with profile images not working. I also have a new issue where private messages no longer work from inside BuddyPress. I am hosted with inmotion.
-
AuthorSearch Results