Search Results for 'private'
-
AuthorSearch Results
-
February 27, 2009 at 8:30 am #38854
In reply to: Announcing: toksta* chat plugin for BuddyPress
gpo1
ParticipantPerS, Does this toksta chat app only display in the member themes like Facebook chat because if in the home theme, it would be abused and not private?
February 26, 2009 at 3:11 pm #38809In reply to: using friends_check_friendship
matt082606
ParticipantI guess I should start at the beginning.
A) I’ve made LOTS of core mods, I have no plans of upgrading, as I am heavily customizing this and removing as many features as I will be adding.
This particular thing comes from me adding 2 check boxes where you post a blog entry now the user has a choice of “keep private” “friends only” and “logged in members only” so when checking friends, or loggedin I set the post_status to friend, or loggedin respectively. This allows me when any theme calls “THE LOOP” as it were I can look at the post_status and decided if the user matches the credentials.
As for now what I have working is if user is logged in the loggedin only posts show with all of the standard published posts no problem. if the user is the owner then everything shows, but if the user is a friend the friend check is failing and there-by not showing the friend only posts.
The place I have injected this is in query.php file. I think I’m going to look through this quite a bit more today on my own… I’ll post the result in case others are trying to use this function from outside the bp-core.
February 26, 2009 at 1:30 pm #38807westpointer
ParticipantAlso, in the email message, the url to the message is [site]/members/brentlayman/messages/view/. This takes you to your message box but should link directly to the message.
February 26, 2009 at 1:00 am #38784In reply to: Theme and plugin requests
hyrxx
Participanti would like to see member themes changeable on a per user basis so they can have their own skins as such, and also allow them to create their own, i think we need to collaborate as to what the user can change and what they cant, it would be nice to allow them selected css,
i would also like to see the modules changeable in a drag and drop kinda way and allow the user to choose which modules they do or do not want to use,
im interested in a love plugin which allows users to post a little love icon with thier wire posts but i could also see this being extended to comments, i have made a request for it before but got no replies so visit my profile for the topic,
last fm integration would be majorly cool i think, as it would rival many of the ‘apps’ out there on the larger social networks. building on this area of things you could also add twitter, etc. so i guess what im trying to say is focus on the users ‘lifestream’
when the user logs in i want them to go straight to the dashboard but the dashboard should have things like pending freind requests, groups to join, latest comments, profile stats (incuding who visited thier profile), options and such like, and an aggregation of thier freinds activity updates. when i visit my site i dont care what user a,b and c are up to im just interested in what my freinds x,y and z did recently,
so it would be very useful to have these widgets in the dashboard, that way everything is centralised for the user to do things,
another thing i thought would be useful was profile privacy options, allowing members to discriminate based on age eg, users over X cant visit profiles for members under 18 or whatever, maybe allow the user to choose who can contact them / add them etc,
also have a block ability and mark as spam,
the profile itself should have 3 modes of operation, public – everything is displayed, semi private, freinds can see full profile, non freinds can see selected modules / different modules only, and fully private – the user must be freinds to see anything other than name, age and city/ country.
i have used the profile sidebar plugin, but as of yet there are no freinds or group widgets for it, i would like to see these with a good amount of configurability options allowing for things like top freinds, other half etc
sorry for such a long post but i would like to see these features implemented as i think they would greatly enhance buddypress!!
thanks!!
February 25, 2009 at 1:46 am #38715In reply to: Member Only Theme
Trent Adams
ParticipantActually, yes! I created a small little plugin to force member login to see member profiles. I was going to put it on groups as well, but my members wanted groups that are public to be just that, public. There is already an option to make a group private anyways.
https://buddypress.org/forums/topic.php?id=481
Trent
February 24, 2009 at 4:21 am #38654In reply to: Theme and plugin requests
Burt Adsit
ParticipantWe’ve got two themes going on in bp. The ‘blog’ theme and the member theme. bp ships with a home theme that is a widget framework. It serves as the theme that many activate as their ‘blog’ theme to run on the wpmu root blog. You’ll also see lots of standard WP themes being used and adapted to serving as the root blog theme. Lots of wonderful examples of what is possible are available.
Developing new member themes seem to be the challenging area that needs attention. Since the gurus are asking, I suggest you folks do some heavy lifting in that area.
Standard WP themes could also use a touch of bp flavor. Integration of some bp features into a WP theme might be nice. bp flavors such as:
– Profile and avatar support in blog posts, comments. When viewing an author or comment stream many times I’d like to leave a quick private note to somebody. Within the avatar/name/vcard block perhaps a link to send them a bp private message.
– Use of bp’s Groups for blog orientation. By orientation I mean that the blog theme should be constructed with multiple users in mind. As a given and not an afterthought. That the blog is a cooperative endeavor and should reflect that fact.
– Integration of the wire component as an ‘aside’ tool. General, quick comment area for members not tied to specific posts.
– A blog is also an individual’s way of expressing themselves yes. However in bp people have friends, belong to groups and have a personal activity stream. Perhaps some way of including that without launching the entire member profile for somebody would be nice.
I guess all my suggestions have to do with integrating useful bp features into standard WP themes so that the theme reflects to visitors they are just not in WP’s version of Kansas anymore. Which they aren’t. We don’t have to hit people over the head with social networking features, just include them in a natural and appropriate manner.
February 23, 2009 at 2:22 am #38571In reply to: Registration Plugin
Trent Adams
ParticipantIf you do a search for “private” or “members only” you will find loads of examples of what people are doing to restrict things right now with Buddypress
Trent
February 22, 2009 at 6:07 am #38524In reply to: Can users input hidden data?
nandopax
ParticipantAfter hours working on that I found a solution, but isn’t definitive and already have a bug! Let’s go. Nicolas, don’t kill me – i’m trying to help!
In the line 728 on bp-xprofile-classes.php just copy and paste the code bellow:
<div id="titlediv">
<h3><label for="is_public"><?php _e("Is This Field Public?", 'buddypress') ?> *</label></h3>
<select name="is_public" id="is_public" style="width: 30%">
<option value="0"<?php if ( $this->is_public == '0' ) { ?> selected="selected"<?php } ?>><?php _e( 'Public', 'buddypress' ) ?></option>
<option value="1"<?php if ( $this->is_public == '1' ) { ?> selected="selected"<?php } ?>><?php _e( 'Private', 'buddypress' ) ?></option>
</select>
</div>
This code will add an opition in the field edit screen / at ProfileFields Admin – to keep the data private for “non friend users”
But the problem is IF the field have data and you aren’t a friend, you will see the field name, but the data will be hidden. look at my birthday http://voiceover-casting.com/members/admin/
I have tryed do the same with the Groups Fields but doesn’t work. Maybe someone can help me to create “Hidden Field Groups” and found a fix my newbie solusion for the “Private Fields” bug.
Could be nice if in a new version the admin and the users can select “Who can see the data” like: “Public, Only Friends, Hidden (only visible for admin and the owner), “.
Nicolas, I will donate for you soon for your great job.
February 20, 2009 at 10:32 pm #38442In reply to: Remove User ID from Blog Related Site Wide Activity
maagic-net
ParticipantThis is not exactly the same problem as in topic, but I’ll post this here.
I’m using Wp 2.7, bp rc-1 and ds_private_blog plugin.
Sitewide activity records every new post and comment even from the blogs set to be fully private (admin only). How can I exclude those?
February 20, 2009 at 2:26 pm #38420In reply to: Announcing: Events component
Alex
ParticipantA great addition for me would be to create ‘Group Events’, events which are associated with specific groups.
Say my group wanted to organise a meetup, we could go to our group page and under “Forum, Wire, Members” etc there would be a “Group Events” option, which when clicked would show all our events and have an option to add a new one. When creating that event we could choose to send invites to the members of the group instead of adding them individually.
If the group is private or hidden our events would also be private/hidden. Group Events would also appear on my personal Events page.
February 20, 2009 at 2:21 pm #38419In reply to: bbpress profile integrates with bp
gpo1
ParticipantI know there’s a plugin or script to make members and groups private. I can’t find it or how is it done?
February 20, 2009 at 2:14 pm #38418In reply to: bbpress profile integrates with bp
Burt Adsit
ParticipantNot private? No it’s a completely open site. It’s been an experimental development site up to this point. I’m rushing around trying to undo all the experimental stuff and turn it into a real website now. Have to do that to do support for plugins.
It’s always going to be kind of unstable. I test alot of ideas there.
February 20, 2009 at 10:10 am #38415In reply to: bbpress profile integrates with bp
gpo1
Participant@burtadsit, You have a cool site,but its not private for members. Is that meant be?
February 16, 2009 at 5:10 am #38041Burt Adsit
ParticipantOne thing. The new post info and event only gets sent over to bp if the group forum is a ‘public’ group forum. Non group forum activity is ignored as is private and hidden group forums. Sitewide activity doesn’t get updated for the private and hidden stuff in bp.
Can’t send over the ‘open’/’community’ forum posts because the sitewide activity has to be associated with a group.
February 15, 2009 at 5:18 am #37950In reply to: Announcing BuddyPress Group Forums for bbPress
Burt Adsit
Participant@john, I included some template tags in the bbGroups package that demonstrates some of that theme’s use of bp centric features. I didn’t include the forums feature because it was specific to the theme. I’ll just zip up that theme and post it on my blog for you to look at the code. Gimme a few.
OK. It’s here: http://ourcommoninterest.org/downloads/oci.zip
You should just be able to unzip that in my-templates. One thing though. bbPress doesn’t seem to have a functions.php file that gets run in each theme/template as wp does. So I had all the template specific code being launched from my oci_bb_group_forums.php plugin. I’ve got all the template code living in oci_bb_custom.php so it get loaded up automatically. I included my oci_bb_custom.php file in the template zip. Just drop that in my-plugins and it’ll be loaded by the bbGroups plugin in bbpress.
If you look at the front-page.php file you’ll see how the forum list is generated.
<?php oci_forum_list('open', 'Community Forums', false); ?>
<?php oci_forum_list('readonly', 'Group Forums', true); ?>
<?php oci_forum_list('hidden', 'Private Forums', true); ?>That fn is a little out of date. I used to have an option in there to generate identicon avatars for all forums. Even the forums that weren’t bp related. I took that capability out. What it does do now is display avs for the currently logged in user’s groups only.
February 14, 2009 at 10:08 pm #37923In reply to: Can a BuddyPress install be an add on to a blog?
Arturo
ParticipantBuddyPress is a set of WPMU plugins, so if you want add new feature, install it and have extended profile, private messages, ecc… the answer for your question is Yes, you can.
February 11, 2009 at 6:20 pm #37698In reply to: BuddyPress 1.0 Due Tomorrow?
Andy Peatling
KeymasterI will be posting an announcement on the blog today regarding the release and more information about the plans going forward.
ib0189
MemberJust thought I’d show interest in an events module/addition to groups too.
As already mentioned being able to create an event with info, invite members and allow an RSVP would be brilliant. Just throwing in a few more thoughts:
– Allowing users to click say “I’m attending”/”I might attend”/”I’m not attending” buttons and their status showing on the events would be great.
– Have an “invited but not replied” status.
– Have maybe public/private events. Public events allow anyone (in that group?) to sign up/invite others, private events don’t.
As I say – just a few thoughts… Such a module/extension of groups would be amazing.
February 10, 2009 at 10:43 pm #37652In reply to: Does BuddyPress have a General Forum?
Burt Adsit
ParticipantAt the moment yes. Things are as you describe. I’ve got a little plugin coming out when bp goes 1.0 that integrates bp group forums and bbpress. bp Public groups will be readonly in bbpress except for group members. Private and Hidden groups will have their forums hidden in bbpress except for group members. Group admins and moderators will have forum moderation capabilities in bbpress.
February 10, 2009 at 3:57 pm #37611In reply to: How do you make members & group private
Marcelo Vetter
ParticipantMe too…
February 10, 2009 at 3:56 pm #37610In reply to: Members only
Marcelo Vetter
ParticipantHi, sorry for my bad english.
I looking for a plugin that makes buddypress a private network. I found this plugin: Secure invitations – http://wpmudev.org/project/secure-invitations. But its not work with BP.
Can anyone intagrate this plugin with BP?
February 1, 2009 at 8:58 pm #37081In reply to: Activity-List not updating correctly
Michael Berra
ParticipantYes, it’s not the blog-privacy issue (although if a blog was private and afterwards set to public I have experienced, that it didn’t really change the way it should…).
@sdq80: Yes, same for me. Sometimes it seamed, that something was deleted (i didn’t look it up in the database). I thought maybe it is a function that kicks activity out after a while…February 1, 2009 at 6:03 pm #37074In reply to: Activity-List not updating correctly
Andy Peatling
KeymasterIf the blog is set to ‘Private’ activity will not be recorded for that blog.
January 31, 2009 at 8:59 am #37022In reply to: Plugin Initialization on BP Links
Joss Winn
ParticipantThanks, Burt and Trent, for posting this. Really, really helpful when you have to create a private social network, as I do, at a university.
January 30, 2009 at 3:10 pm #36949In reply to: Video/MP3 Upload “Album”
Trent Adams
ParticipantYeah, that is what I mean. If adding things like “embed” or “object” code scares you to death, you can always include something like Anarchy Media Player where you can include the javascript in the buddypress theme header and then it will parse the page for the plugin quickcode and display the media that way. That is a way some are already doing it with things like bbPress where the media plugin doesn’t exist yet.
Andy put a filter on the tags used in wire. It allows common HTML now, but with a plugin can also be used to change the allowed tags to anything you want. I am going to do this on an extremely private install, but thinking about Anarchy as well. Just haven’t had time.
Trent
-
AuthorSearch Results