Search Results for 'private'
-
AuthorSearch Results
-
July 26, 2010 at 11:21 am #87029
rich! @ etiviti
Participant@sadr
https://wordpress.org/extend/plugins/buddypress-restrict-group-creation/ does this already.You can set whatever defined wp_cap/role levels assigned to:
Create group capability
Create group forum capability
Create private group capability
Create hidden group capabilityJuly 23, 2010 at 4:51 pm #86766hachimaki
Member@r-a-y Yeah, you have simplified the entire problem in one phrase, i’m amazed!

I suppose i should learn to code on wordpress, much more difficult than Joomla! or Nuked for me.
July 23, 2010 at 4:50 pm #86764In reply to: Auto-Suggest in Private Messages
robcwright
ParticipantRay, as always, you rock. I looked all over for something like this. Thanks!!
July 23, 2010 at 4:47 pm #86763In reply to: Auto-Suggest in Private Messages
r-a-y
KeymasterJuly 23, 2010 at 4:45 pm #86761r-a-y
KeymasterHey hachimaki,
Your needs would need to be custom-coded. When a user creates a blog, they have the option to select its privacy. A possible solution involves checking if the blog in question is private; if so redirect to the registration page, if not, leave open to public.
July 23, 2010 at 8:27 am #86731hachimaki
MemberJuly 22, 2010 at 8:48 pm #86671techguy
ParticipantHave you tried asking the plugin author?
July 22, 2010 at 4:36 pm #86645hachimaki
Memberbump
July 22, 2010 at 4:22 pm #86642In reply to: Private Message Notification Ghost…
Pisanojm
ParticipantRich this is already patched… if they want to patch it… VERY long/multiple file patch though… in the trac.buddypress.org site.
July 22, 2010 at 3:38 pm #86632In reply to: Private Message Notification Ghost…
rich! @ etiviti
Participanti believe this will be fixed in 1.2.6
July 22, 2010 at 3:28 pm #86630In reply to: Private Message Notification Ghost…
guigoz
MemberNo idea ?
July 22, 2010 at 6:17 am #86589In reply to: How to make a private community?
r-a-y
Keymaster@linusf – Read the other solution Travel Junkie posted:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-make-a-private-community/?topic_page=3&num=15#post-44729This will block everything but the register and activation pages.
July 21, 2010 at 10:54 pm #86557In reply to: WP-minify and new version of Buddypress
Pisanojm
Participant@paul_gibbs we are also seeing issues using object-cache with BuddyPress and w3 total cache, most notably this manifests itself when trying to send Private Messages… We are using Minify, Database Cache, CDN (Amazon s3), and Browswer Cache (Developmental Version of Plugin)…
July 21, 2010 at 10:16 pm #86548Helene Goldberg
ParticipantOK, no problem everyone, I’ve figured it out. I just had to disable Global Forum Directory in BuddyPress –> Settings, and now the tab is gone too. Pity, I’d prefer to have that enabled, and see all the topics. Dilemma is that it’d be really great to have that global forum directory I think, we’d just have to change our groups from private to public, and I don’t know if we want to do that.
July 21, 2010 at 6:37 pm #86506In reply to: Use PM component to send data
r-a-y
KeymasterIf you’re simply looking at sending a message, then you’re right! messages_new_message() is the way to go.
If you’re looking to modify this private message over time, you can’t do it via a function because such a function doesn’t exist; you’d have to modify the content via the DB. I’m probably just reading into your use-case a little too much!
July 21, 2010 at 11:35 am #86452In reply to: How to make a private community?
linusf
Participant@r-a-y, @Travel-Junkie I replaced Ray’s original code with Travel-Junkies as it was favoured by the majority. However I´m using a lot of pages and Travel-Junkies solution is only blocking the core Bp functions. In addition Ray’s post is no longer present. What do I need to add to block all of my pages for non registered users? where can I find Rays original code?
July 19, 2010 at 8:44 pm #86195In reply to: New Component – prayer plugin
ourfusion
ParticipantThanks for the input so far…
@mercime – The idea behind it would be that we would allow existing groups (both private and public) to have their own prayer requests so that a group that is based off of a small group bible study per say, would be able to post privately so that only members in that group would be able to view them.thanks for these ideas, and any more you may have
July 19, 2010 at 4:38 am #86114techguy
ParticipantI thought that there was a solution on the Google Webmaster page: http://www.google.com/webmasters/ I think you can provide them the login and they’ll index it.
Just know that if you do that, then they’ll likely cache some of the “private” pages which makes it so they aren’t technically private since you could potentially find them in Google’s cache.
July 18, 2010 at 11:25 pm #86109In reply to: Private xprofile fields
ssmediaco
ParticipantExactly what I needed! Thanks!
July 18, 2010 at 5:56 am #86055In reply to: How to make a private community?
Pisanojm
ParticipantGood News… I think I figured out the above, all though I still don’t know why I had to add it…
I added this:
if ( is_front_page () )
bp_core_redirect( ‘http://musicpln.org/pln-posts/landing/’ );above
if ($bp&&($bp->current_component == BP_REGISTER_SLUG ))//buddypress
return;and now it all works like a charm… I’m sure somebody can make this look cleaner that I did, but it is effectivley working now…
July 18, 2010 at 4:52 am #86053In reply to: How to make a private community?
Pisanojm
ParticipantOk, spending evern more time on this… I went back to the idea of using @r-a-y ‘s modified regestered-users-only-plugin… Now it is 95% the way I want except the homepage is not re-directing to the landing page… every other page does this…. probably has something to do with the home page being the activity stream??? I’m copying the key changes I have done to the plugin below:
// This is a base array of pages that will be EXCLUDED from being blocked
if ($bp&&($bp->current_component == BP_REGISTER_SLUG ))//buddypress
return;if ( bp_is_register_page() || bp_is_activation_page() || is_feed() ||is_page(‘landing’) ) //buddypress)
return;$this->exclusions = array(
‘wp-login.php’,
‘wp-signup.php’,
‘wp-register.php’,
‘wp-activate.php’,
‘wp-cron.php’, // Just incase
‘wp-trackback.php’,
‘wp-app.php’,
‘xmlrpc.php’,
);// If the current script name is in the exclusion list, abort
if ( in_array( basename($_SERVER), apply_filters( ‘registered-users-only_exclusions’, $this->exclusions) ) ) return;// Still here? Okay, then redirect to the login form
bp_core_redirect( ‘http://musicpln.org/pln-posts/landing/’ );July 18, 2010 at 1:25 am #86047In reply to: How to make a private community?
Pisanojm
ParticipantHello BP gurus,
Just checking to see if any of you have any code examples for my privacy problem above… I would love to get this to work tomorrow before my launch… re: private community & redirect to different page for login (with login widget).July 17, 2010 at 10:38 pm #86045In reply to: Private Intranet
tradiart
MemberThank you!!!
July 17, 2010 at 9:53 pm #86043In reply to: Private Intranet
July 16, 2010 at 11:07 pm #85948In reply to: How to make a private community?
Pisanojm
ParticipantOk, I’m still dorking around with this… the goal is to have my site a register only site. When people go to musicpln.org they will be redirected to the landing page (http://musicpln.org/landing1) which is a BP page with a login widget. I also would like the feeds to not be blocked.
This code goes in the function.php file:
function sh_walled_garden()
{
global $bp;if( bp_is_register_page() || bp_is_activation_page() ||is_feed() || is_page(‘landing1’) )
// Where landing1 is the page slug of where I would like to redirect
return;if( ! is_user_logged_in() )
bp_core_redirect( $bp->root_domain .’/’. BP_REGISTER_SLUG );
// my activity page is the “homepage” and I don’t want to show any BLOG(s)
}add_action( ‘get_header’, ‘sh_walled_garden’ );
I would like this to redirect to the landing1 reference above (which includes the login widget) The url is http://musicpln.org/landing1
I saw that you put this code in a previous reply…
Where can I put this to make it redirect to the LoginPage above? How can I tie this altogether now?
-
AuthorSearch Results