Search Results for 'private'
-
AuthorSearch Results
-
March 23, 2010 at 2:42 pm #69834
In reply to: Global Content Tagging
Erlend
Participant+1, really need this! BP Contents seem to cover everything suggested in this thread, if not more.
I have a feature suggestion, though I’m unsure which platform (WordPress vs BuddyPress) it actually targets. I would like the ability to make certain categories and tags private, i.e. for moderators and above only. I found a plugin called “private tags”
https://wordpress.org/extend/plugins/private-tags/
This plugin however hides content, while all I want to do is to hide the option of adding certain tags. For instance if your website pulls official site news from various sub-blogs by checking for the ‘official’ tag, ordinary users should not be allowed to apply this tag.
March 23, 2010 at 1:42 pm #69823In reply to: BP 1.2 and bbPress admin/plugins
rich! @ etiviti
Participant
@nuprn1, what did you modify? I noticed that posts in bbpress don’t show up on the activity notifications, and the public/private/hidden stuff doesn’t seem to work either…I can’t remember but i had to rewrite a bunch of it – and also hack the bbPress core to play nice with the GMT buddypress timestamps. Then throw in that bpGroups uses xmlrpc – so personally i’m moving to open up bbpress within buddypress instead of running an external bbpress install (with all the hidden/private forums)
March 23, 2010 at 1:40 pm #69822In reply to: How to make a private community?
hachimaki
MemberWow! really appreciate it
March 23, 2010 at 1:17 pm #69817In reply to: How to make a private community?
Anonymous User 96400
InactiveThis is what I came up with:
place the function below into functions.php in your theme folder.
function sh_walled_garden()
{
global $bp;
if ( bp_is_register_page() || bp_is_activation_page() )
return;
if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( $bp->root_domain .'/'. BP_REGISTER_SLUG );
}
add_action( 'walled_garden', 'sh_walled_garden' );and this right on top of header.php (before the <!DOCTYPE… parts):
<?php do_action( 'walled_garden' ) ?>The above makes all BP pages private, except the registration and activation pages. It also leaves all blog pages public. It’s a bit easier than editing all theme pages.
Boris
March 23, 2010 at 4:50 am #69778In reply to: BP 1.2 and bbPress admin/plugins
3sixty
ParticipantI use the bpGroups plugins (“forums” subdomain of the BP site) but the plug-in required some updating to get everything working smooth (activity notifications, public/private/hidden/ready only stuff)
@nuprn1, what did you modify? I noticed that posts in bbpress don’t show up on the activity notifications, and the public/private/hidden stuff doesn’t seem to work either…
Also, the plugin is looking for an Authorized Buddypress Username, or “the user that BuddyPress uses to access bbPress.” Is there actually still a user, or was that part of the older BP/bbpress integration method?
March 22, 2010 at 10:25 pm #69727In reply to: How to make a private community?
Mike Pratt
ParticipantI had to FedEx her. You may have to sign for the delivery. She shouldn’t take too long to inflate
March 20, 2010 at 9:30 pm #69476Jeff Sayre
ParticipantWhich version of WordPress and BuddyPress are you running?
To post a new topic to a thread using the Group Forums Directory, you must be a member of that group and the group must be public. So, you will not have the option of selecting groups that are private or those of which you are not a member.
March 20, 2010 at 3:27 pm #69436In reply to: Members-only groups
Hugo Ashmore
ParticipantMembers? site members or group members? if group member then surely you just set the group to private which still shows it just not content.
March 20, 2010 at 3:04 pm #69432In reply to: Private Buddy Press groups
Boone Gorges
KeymasterWhen you create a group, you have the option of making it Public, Private or Hidden. Public groups are free for anyone to join, and their content is viewable by anyone. Private groups are listed in sitewide directories, so that others can see the group names and descriptions when searching and browsing for groups, but the content of the group can only be seen by group members. Group membership for private groups is controlled, so that a member can only join if they’ve requested membership or been invited by a current member. Hidden groups are like private groups, except that they do not appear in sitewide group listings and search.
March 20, 2010 at 4:19 am #693913sixty
Participantwill do. Thanks!
March 19, 2010 at 8:38 am #69191In reply to: New plugin: BP Group Management
bpinspire
ParticipantThe user added to the private group does not see the group on his “my groups” page
March 19, 2010 at 8:34 am #69190In reply to: ATTENTION TRANSLATORS! – BP Album+ Needs Your Help!
epsi
ParticipantHi! I’ve sent ‘Bahasa Indonesia’ translation via private message to @foxly.
Language: Indonesia (id_ID)
I just want to say thank you for this great bp-album.
Hope my community would love this feature (plugin) too
after my site officially launched someday.
note:
* Main BP ‘Bahasa Indonesia’ translator is @sofyand
* My alumni bp site (trial) is http://iluni-ftui.org/riwayat/
March 19, 2010 at 5:39 am #69175In reply to: How to make a private community?
r-a-y
KeymasterAdd this somewhere within your form tag:
<input type="hidden" name="redirect_to" value="INSERT YOUR URL YOU WANT TO REDIRECT TO" />Btw, a thousand maidens is too much, I’d be happy with one nice lass at my doorstep
March 19, 2010 at 4:23 am #69163In reply to: How to make a private community?
Mike Pratt
Participant@r-a-y Thank you and may a thousand maidens be blessed upon your doorstep by morning!
What would be the code to place to redirect the login form action specified by
<form name="login-form" id="login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login' ) ?>" method="post">back to $bp->root_domain?
March 19, 2010 at 2:44 am #69149In reply to: How to make a private community?
r-a-y
KeymasterHi Mike,
Your code is correct, but since your page isn’t the BP_REGISTER_SLUG or BP_ACTIVATION_SLUG, it will lead you to redirect hell!
Add your page (and any other page you need to whitelist from blocking) to the following conditional:
if ( bp_is_register_page() || bp_is_activation_page() || THEWELCOMEPAGE ) //buddypress
return;Change THEWELCOMEPAGE to something that checks if you’re on welcome.php.
If welcome.php is a WordPress page with the slug of “welcome”, you would use something like:
is_page('welcome')So your conditional would look like:
if ( bp_is_register_page() || bp_is_activation_page() || is_page('welcome') ) //buddypress
return;Hope that helps!
March 19, 2010 at 1:36 am #69143In reply to: How to make a private community?
Mike Pratt
Participant@r-a-y I am embarrassed to be asking such a simple question:
re registered-users line ~48 -> bp_core_redirect(bp_get_signup_page());
What would be the correct way to do the following:
redirect not_logged_in users to a welcome page.. say domain.com/welcome.php which has a login widget for registered users as well as a Create Account button/link taking you to domain.com/register.php ?
I tried:
`$page = $bp->root_domain . ‘/welcome.php’;
bp_core_redirect($page);`
but, of course, that led me to redirect Hell.
Thanks for clarifying.
March 18, 2010 at 6:12 pm #69028abcde666
ParticipantMarch 18, 2010 at 5:25 pm #69010In reply to: New plugin: BP Group Management
bpinspire
Participant@Boone yes 0.3.1 fixed my issue now I can see all the users, but I still have one issue with Private Groups, if I add a user to a Private Group the same user won’t see it. Any idea?
March 18, 2010 at 9:59 am #68942In reply to: After update private & hidden Groups empty
shauny
MemberI had the exact same problem, forums that were ‘private’ before the update were unaccessible when I click “forums” or “group/forums”.
Am now restoring a backup, not going to update yet…
March 18, 2010 at 9:01 am #68934Andy Peatling
Keymaster@justin_k – I understand your motives, but it is more an ethical/privacy issue. You should perhaps at least let people know that you are harvesting server details. There may be private unlaunched sites that do not want the details of their setup exposed without their knowledge.
The best way to integrate this into BP is to put this code in a custom plugin or in bp-custom.php file. That way you don’t have to edit the theme at all. This code would also be great if it was added to the actual plugin
:function bp_add_fb_login_button() {
if ( !is_user_logged_in() ) {
if ( function_exists( 'jfb_output_facebook_btn' ) ) {
jfb_output_facebook_btn();
jfb_output_facebook_init();
jfb_output_facebook_callback();
}
}
}
add_action( 'bp_after_sidebar_login_form', 'bp_add_fb_login_button' );That way anyone activating this plugin when using BuddyPress won’t have to do anything else, the login button will just appear on the login sidebar form.
March 17, 2010 at 9:38 pm #68864In reply to: How to make a private community?
hachimaki
MemberThe blogs are meant to be public, but no the comunity. So i’ll try with my path, and see what can i do with invitations
March 17, 2010 at 8:04 pm #68842In reply to: Supporting Devs & wishlist
Bowe
ParticipantI’m very intertested in doing this, and I’ve been working on this for the new BP-Tricks site.. I’ll send you a private message with some more details, because I think we are both wanting to do the same; set up a place where plugin suggestions can be made and plugin ideas can get adopted by developers.
March 17, 2010 at 6:18 pm #68825In reply to: Cannot send private messages in BP 1.2.1
Rich Spott
Participantstill no help?
March 17, 2010 at 5:22 pm #68813In reply to: Ascii Characters in Email
1drummergirl
ParticipantI see it in all emails…friend requests, private messages…anything that send an email notification.
March 17, 2010 at 3:11 pm #68780Tosh
ParticipantI’m sure there is. I disable the plugins until it starts working I guess.
[Update] Ok I disabled all the plugins except the following:
BuddyPress Version 1.2.2.1
BuddyPress Template Pack Version 1.0.2
Private WP 2 Version 1.0
I’m using this theme – Fusion 3.0.4 by digitalnature
Still not working … so it’s either the BuddyPress Template Pack or the theme … where do I go from here?
-
AuthorSearch Results