Search Results for 'private'
-
AuthorSearch Results
-
March 4, 2011 at 7:13 pm #106825
Miko
ParticipantMarch 3, 2011 at 7:57 pm #106748r-a-y
KeymasterTry BP-Media:
https://buddypress.org/community/groups/bp-album/There’s also a paid plugin for this as well:
http://buddydev.com/plugins/bp-gallery/—
As for members list, you’ll have to either use a plugin or code something that restricts access to that as by default, everything is open to the public.
And regarding a forum for signed-in members, currently BuddyPress uses a concept called “Groups” (much similar to Facebook’s fan pages). Forums can be enabled on a per-group basis, and groups can be public, private or hidden.
—
Hope that answers your questions for the most part!
February 26, 2011 at 11:52 pm #106440In reply to: Register Path Is Wrong
jimmymeboy
MemberYes, I am using BuddyPress Private Community
February 26, 2011 at 11:42 pm #106438In reply to: Register Path Is Wrong
r-a-y
KeymasterJust a shot in the dark here, but are you using the private community plugin?
February 26, 2011 at 9:06 am #106357shopnobaz
MemberI have installed some plugins. Last installed plugins – WP Super Cache, Role Scoper, All in One Seo, Yet Another Related Posts Plugin, seo press. I already deactivated role scoper, YARPP and seo press.
February 26, 2011 at 7:38 am #106350In reply to: Custom Login Page in BuddyPress
xavieremerson
Memberbp_custom page?
where is it?
I’m new to buddypress. I don’t have that page,
I’m also trying to integrate stand alone login page
I am also integrated buddypress private community pluginhealp me please..
Thankz in advance
February 26, 2011 at 3:10 am #106342Paul Wong-Gibbs
KeymasterWhat did you change a week ago?
February 26, 2011 at 12:00 am #106335shopnobaz
MemberThere is no solution of this problem! No one can help!!
February 25, 2011 at 8:40 am #106242j4yz
MemberSorry my first post
__Is that with the existing group functionality to solve?
How can I add another group tab (eg “other group”)?
This new tab “other group ” should go through the same steps like to create a new group. In step two (settings), it should be directly a private group, without the forum (no choice). In step 4 (invitations), only be invited friends there are, not even in the “other group “.
Any ideas and tips how can I implement it?
What should I do, what files I need to adjust what tables do I need?February 24, 2011 at 10:05 pm #106198danbpfr
Participantyou can download some version of translation on the buddypress i18n trac:
https://i18n.trac.buddypress.org/browser
or on the buddypress trac:
https://trac.buddypress.org/browser?order=name#tags
there are only 3 strings diffs between 1.2.7 and 1.2.8 pot, so it’s not very important at this time if you miss somethingIf you want to work with pot files, you have to pick in the tagged version, not in the trunk (except for your private tests of course)
February 24, 2011 at 9:44 pm #106189In reply to: Buddypress Private Message attachements?
r-a-y
KeymasterThere is no plugin available for this at the moment, but it is possible (like most things).
February 24, 2011 at 8:53 pm #106176In reply to: Private reply
mike365
MemberI’m not too code savvy so I didn’t know if there was a plugin. Any idea of where to find a reputable plugin codes?
February 24, 2011 at 8:48 pm #106173In reply to: Private reply
r-a-y
KeymasterAnything is possible, though that example is a little more specific.
You could do something with the topic template:
/groups/single/forum/topic.phpCheck if the post is not the first post in the topic, then check to see if that post is yours or not with `bp_get_the_topic_is_mine()`.
Hopefully that gives you a few hints to run with.
February 22, 2011 at 9:46 am #105955neopeacock
Membergreat!
thannksFebruary 22, 2011 at 1:07 am #105943In reply to: How to make a private community?
ABomb1977
MemberLOL
Duh on me.

Thanks, again!February 21, 2011 at 8:59 pm #105931In reply to: How to make a private community?
Anonymous User 96400
InactiveIf you use slugs you’ll need to enclose them in ‘, like `is_page( ‘terms-of-service’ )`
February 21, 2011 at 6:50 pm #105922In reply to: How to make a private community?
ABomb1977
MemberSure. Here’s the code:
`function sh_walled_garden()
{
global $bp;if( bp_is_register_page() || bp_is_activation_page() || is_page(terms-of-service) || is_page(privacy-policy) )
return;if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( $bp->root_domain .’/’. BP_REGISTER_SLUG );
}
add_action( ‘get_header’, ‘sh_walled_garden’ );`The activity stream, member directory … the whole nine shows up to not-logged-in users if i add anything to the exclusion line.
February 21, 2011 at 6:41 pm #105920In reply to: How to make a private community?
Anonymous User 96400
InactiveWhat do you mean with everything? Can you post your complete code here?
February 21, 2011 at 6:28 pm #105919In reply to: How to make a private community?
ABomb1977
MemberThanks heaps!
The only issue is that if I add
`is_page(slug)` or `bp_is_page(slug)`
it makes everything visible again.Any ideas?
February 21, 2011 at 4:44 pm #105911In reply to: How to make a private community?
Anonymous User 96400
Inactive@abomb1977
You’ll have to create that TOS page yourself. It’ll be a normal WP page. Then you can exclude that page like this:
`is_page(23)`23 in this case is the id of the page, so substitute with the proper id. You can use the page slug as well instead of the id.
February 21, 2011 at 4:32 pm #105910In reply to: How to make a private community?
ABomb1977
MemberI absolutely adore this code you’ve posted. It’s clean and easy to install, and there’s no extraneous junk that needs to be done. A simple copy/paste does the trick amazingly well for me.
But here’s a question:
I know that
`if( bp_is_register_page() || bp_is_activation_page() )’
is where I add slugs that make particular pages available to the public.I’m also using the bp-xtra-signup, which I think you contributed to. On my registration page, there’s a checkbox to check that says one agrees to the site TOS, but one has to open a link to see the TOS. When that link is clicked, it redirects to the front page of the site that logged out users are redirected to.
I’m wondering two things: (1) I haven’t made a TOS page, so where is it? Does one come with that plugin? (Cause I have yet to find it. LOL) and (2) Where do I get that slug to add to the visible pages code line?
Thanks!
ABombFebruary 16, 2011 at 9:48 pm #105573In reply to: Private Member Directory
switzern
ParticipantAfter some searching I found the Private Buddypress plugin.
That did the trick.
February 15, 2011 at 2:25 pm #105463jokermill
MemberWhy Docs Tab is active in private group for users that are not member of it?
is it possible to hide it and make not accessible for nonmembers?February 15, 2011 at 12:54 pm #105461cezar
Participantcan you fix pagination also?
February 15, 2011 at 7:18 am #105451In reply to: Hidden group posts visible to all
Hugo Ashmore
ParticipantOne possible fix or workaround might be to remove ‘favourites’ from public screens i.e only display this if logged in user is equal to displayed user.
imho a lot of a members account/profile information is essentially private to them, I do not really need to see another members favourite list.
-
AuthorSearch Results