Search Results for 'private'
-
AuthorSearch Results
-
February 26, 2011 at 12:00 am #106335
shopnobaz
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.
February 12, 2011 at 4:23 pm #105241In reply to: Do these plugins exist…
pcwriter
Participant1) s2member. You’ll likely need to download the zip and upload to your site via ftp ‘cuz it’s a huge plugin.
http://www.primothemes.com/post/product/s2member-membership-plugin-with-paypal/
2) Buddypress includes a private messaging system (kinda like internal email) but there are a few chat plugins available too. See this post:
https://buddypress.org/community/groups/miscellaneous/forum/topic/chat-rooms-chat-scripts-any-recommendations/Hope this helps!
February 12, 2011 at 12:00 pm #105234In reply to: Only memeber see othe members
Иво Минчев
MemberI think I found my solution.
Private BuddyPress is the plugin. Sorry.February 10, 2011 at 12:13 am #105053In reply to: [Resolved] Trying to modify the group loop
Boone Gorges
KeymasterI think you might be barking up the wrong tree. Since you want to repurpose an existing query (the ‘my groups’ query) you don’t really need to alter the querystring. Instead, you should be altering the behavior of the query itself, which happens at the level of the bp_has_groups() function, as found in bp-groups/bp-groups-templatetags.php. One of the arguments for that function is user_id; when one is passed, you know you are looking at a my-groups loop.
Ideally, you would be able to filter bp_has_groups() to detect when a my-groups-type query was being requested, and then hijack it and do a query just for hidden groups. Unfortunately, I don’t believe that there is going to be an easy way to do that in this version of BuddyPress. For one thing, while there is a filter on bp_has_groups, the original arguments (like user_id) are not passed along to the filter in BP 1.2.7 (it’d be a good enhancement request). Second, there is no way to filter groups by status (public, private, hidden) at the moment (that too would be a good enhancement request).
One quick and dirty way to do something like what you want to do is to filter bp_has_groups, grab the content of the group query out of the groups_template global, and remove the ones that are *not* hidden. It’s not an ideal solution for a number of reasons (for one, it screws up pagination) but it can work. Here’s an example off the top of my head (untested!)
`function bbg_hidden_groups_only( $has_groups ) {
global $groups_template;// when we are looking at a my-groups page…
if ( bp_is_user_groups() ) {
foreach ( $groups_template->groups as $key => $group ) {
if ( ‘hidden’ == $group->status ) {
unset( $groups_template->groups[$key] );
}
}// reset the keys so you don’t end up with blank spaces
$groups_template->groups = array_values( $groups_template->groups );
}return $has_groups;
}
add_filter( ‘bp_has_groups’, ‘bbg_hidden_groups_only’ );`February 6, 2011 at 12:23 am #104734Virtuali
ParticipantThis is your THIRD post you have made on this problem.
February 5, 2011 at 5:34 pm #104707In reply to: Private Intranet
t.sjogren
Participant@tradiart
I´m also going to use BuddyPress as an intranet. Its for a company and it is going to be completely locked down if users arent logged in.
Can you please share some experiences with your intranet solution. The biggest question i have is to “lock down” the site when users are logged out. No information is allowed to be exposed. Do you have the same setup? That the user have to be logged in before accessing any information?
I´m thinking about RSS feeds. How can i restrict access to them? I want to have BP email updates instead.
What plugis/hacks are you using to achieve your intranet solution?
What modules/functions do you have active? Groups? Forum? more?
Do you have a solution for sending email updates to users when someone reply to a forum post?February 5, 2011 at 5:22 pm #104704In reply to: Show Members in Private Groups
sash1ndr
MemberProblem solved.
February 5, 2011 at 1:29 am #104656In reply to: BuddyPress Privacy
@mercime
Participant@joshua_d Some other options include
https://wordpress.org/extend/plugins/bp-profile-privacy/
https://wordpress.org/extend/plugins/buddypress-profiles-manager/
and/or making the site private for members only via script or a plugins like
https://wordpress.org/extend/plugins/s2member/
https://wordpress.org/extend/plugins/hs-membership/I know that there are other devs who are interested in developing the plugin. Just don’t know when it will happen and whether or not it’ll be free or premium.
-
AuthorSearch Results