Search Results for 'private'
-
AuthorSearch Results
-
March 27, 2010 at 10:34 pm #70469
In reply to: Private message timestamp errors
3sixty
ParticipantNp! Where is my Bug Hunter badge??
March 27, 2010 at 9:23 pm #70462In reply to: Private message timestamp errors
Paul Wong-Gibbs
KeymasterIf there are duplicate trac tickets for the same issue, obviously, just close them all down except for one of them and put a note in the others pointing to that ticket. Thanks again everyone for your time and effort in reporting bugs
March 27, 2010 at 9:17 pm #70461In reply to: Private message timestamp errors
3sixty
ParticipantPlease search my recent posts for some code I wrote to fix this exact issue. In short, BP Messages fetches server time when it is inserting the timestamp. I think I also filed a trac on this. We should probably cross refence our tracs so the developers can get all the info in one place.
March 27, 2010 at 7:36 pm #70453In reply to: Private message timestamp errors
Jamie Marsland
ParticipantI think that may be your problem. I moved my hosting co to one in the uk because I couldn’t find a fix. That was 6 months ago.
March 27, 2010 at 2:48 pm #70424In reply to: Private message timestamp errors
snark
ParticipantYes @jamesmarsland it is.
March 27, 2010 at 2:22 pm #70416In reply to: Simple BuddyPress Profile Privacy
mrjarbenne
Participant@m In reply to your statement above: “Plus I don’t see any reason not to give the user total control over their profile since it’s their info (thus no need for a setting to “Let user decide” )” I thought I might be able to provide a good reason…
As an elementary teacher using BP in the classroom, privacy is incredibly important, and a trigger that allows me to force the privacy of my users should not be discounted.
Teaching kids how to navigate and manage their digital footprint is easier if admins can ensure that mistakes the users make can be contained in the privacy of the “digital classroom”
Plugin looks interesting, but would love the added security of knowing that my kids’ profiles are private.
March 27, 2010 at 6:17 am #70372In reply to: Private message timestamp errors
Jamie Marsland
ParticipantIs your server hosted in a different time zone to where you are?
March 27, 2010 at 1:57 am #70357Anointed
ParticipantProblem is my sitewide posts blog is the primary root blog. Can’t make that one private as that is the primary place users will visit.
March 27, 2010 at 1:32 am #70353r-a-y
KeymasterKeep the sidewide posts blog private.
Then it won’t show up.
March 25, 2010 at 5:50 pm #70135In reply to: A couple Straight Forward Questions
Reaxion
MemberWith a little looking around I think I’ve answered my own questions, but I’ll reply to myself in case it helps others:
– yes, you can have private groups that have private conversations
– I’m not sure if the admin can sign up individuals from the admin and start private conversations from the admin, but I’m thinking if the admin had an account they could start groups and discussions like a regular user, and being a member of those areas can be an advantage.
March 25, 2010 at 2:50 pm #70110In reply to: New users are not getting verification email
Pascal Dreissen
Participantfyi, i installed this plugin: https://wordpress.org/extend/plugins/wp-mail-smtp/
When i used the standard php_mail option it does not work, if i use smtp mailing it works.
As mentioned before private messaging between users is sending out notifications without any problem (without plugin). Is there any difference between the mail functions here ?
March 25, 2010 at 2:26 pm #70103In reply to: New users are not getting verification email
Pascal Dreissen
ParticipantAndy,
I don’t think that’s the issue. However i am also not sure it is buddypress related, i did some more testing and found that creating a user from the backend does not send confirmation mails either. Private messaging within buddypress is working great however. So it is in my case NOT buddypress related.
March 25, 2010 at 8:05 am #70070In reply to: How to make a private community?
hachimaki
Memberlol, so it should work now for me xD
March 25, 2010 at 12:22 am #70049In reply to: How to make a private community?
marioe
MemberGreat, Thanks!
March 24, 2010 at 11:08 pm #70042In reply to: How to make a private community?
Anonymous User 96400
Inactiveah, it makes sense now. my code makes all blog pages public, which obviously includes the frontpage as well. so if you’re showing the activity stream there, it would be public. I guess you want to make your complete site private? then the code below should work for you:
function sh_walled_garden()
{
global $bp;
if( bp_is_register_page() || bp_is_activation_page() )
return;
if( ! is_user_logged_in() )
bp_core_redirect( $bp->root_domain .'/'. BP_REGISTER_SLUG );
}
add_action( 'get_header', 'sh_walled_garden' );March 24, 2010 at 10:42 pm #70040In reply to: How to make a private community?
marioe
MemberTravel junkie,
is working on the members page, and on my groups page, and it wasen’t working on the activity page.
I had my activity stream as my homepage I change home page to point to a static page and now it seems to work!
I guess you posting does not apply it static pages.
March 24, 2010 at 10:27 pm #70039In reply to: How to make a private community?
marioe
MemberTravel Junkie,
I’m using 2.9.2 with the buddypress default theme. I’m having no luck. I paste you code on my functions.php file and nothing! any suggestions?
March 24, 2010 at 10:21 pm #70038In reply to: How to make a private community?
Anonymous User 96400
Inactivewell, i’ve got it running on a single install of wp 3.0 alpha, so there shouldn’t be any problems.
March 24, 2010 at 10:15 pm #70037In reply to: How to make a private community?
marioe
MemberTravel junkie,
I’m using a regular WordPress install( not MU) can your posting still work for me?
March 24, 2010 at 10:14 pm #70036In reply to: How to make a private community?
hachimaki
Memberyes, not better, but more simplified…
i still prefer yours, it’s more accurate, professionalm but… it doesn’t works for me
regards
March 24, 2010 at 8:21 pm #70016In reply to: How to make a private community?
Anonymous User 96400
Inactiveit’s only a better solution for you, cause you couldn’t get the other one to work
but anyways, glad you found something that does work!
March 24, 2010 at 7:39 pm #70006In reply to: How to make a private community?
hachimaki
MemberFound a much more better solution:
Use this plugin: Force user login https://wordpress.org/extend/plugins/force-user-login/
Use this other plugin: http://wpmututorials.com/how-to/custom-branded-login-screen-for-wpmu/ and all done!
March 24, 2010 at 12:24 pm #69970In reply to: How to make a private community?
hachimaki
Memberno, i mean, in functions.php they use to put that /*introduction*/ for locating the functions.
I put the second method on functions.php, i supose i put it well….
I use unplugged theme, it says it uses the child theme files… so i paste in the functions.php of bp-default theme your code. and it doesn’t works. I dunno why.
March 24, 2010 at 11:07 am #69963In reply to: How to make a private community?
Anonymous User 96400
Inactivehmm, weird. maybe it’s a child theme thing. i use it on a parent theme. shouldn’t be a problem, though.
I pasted it at the first line= not working
I pasted it with the */Private Community*/ and the code below= not workingi didn’t get these two lines at all. with the second method, there’s no need to put anything on the first line of header.php.
March 24, 2010 at 10:16 am #69960In reply to: How to make a private community?
hachimaki
MemberStill not working. I have pasted the new code in functions.php in the buddypress child theme (i use unplugged theme wich uses the bp-default files).
I pasted it at the first line= not working
I pasted it with the */Private Community*/ and the code below= not working
It doesn’t works, i dunno why.
-
AuthorSearch Results