Search Results for 'buddypress'
-
AuthorSearch Results
-
May 22, 2010 at 1:08 pm #79183
Anonymous User 96400
InactiveI’m not sure this is really necessary. Why shouldn’t plugins that work with BP, but aren’t specifically made for it, be listed? You mentioned Default Blog Options, which can add a lot of value to a BP installation, if you allow user blogs.
Also, forcing plugin authors to add BP into their plugin name is a bad idea. If a plugin also works on a WP install without BP, it would put some users off. A good example for that would be s2member…
May 22, 2010 at 1:05 pm #79182Paul Wong-Gibbs
Keymaster+1
May 22, 2010 at 12:30 pm #79175In reply to: wordpress or wp mu – buddypress
nit3watch
Participantta for the help
May 22, 2010 at 12:19 pm #79171Dwenaus
Participantwould this be easy to change?
May 22, 2010 at 9:50 am #79162In reply to: Changing Group tab display defaults
May 22, 2010 at 8:50 am #79157Anja Fokker
ParticipantYEZZ, it works again. Thanks for your help again!
The only things what are needed:In the root of BuddyPress (version 1.2.3):
In bp-blogs.php, change rule 379 of
if ( (int)get_blog_option( $blog_id, ‘blog_public’ ) || !bp_core_is_multisite() ) {
IN:
if (get_blog_option( $blog_id, ‘blog_public’ ) > 0 || !bp_core_is_multisite() ) {and change rule 427 from
if ( (int)get_blog_option( $recorded_comment->blog_id, ‘blog_public’ ) || !bp_core_is_multisite() ) {
IN:
if (get_blog_option( $recorded_comment->blog_id, ‘blog_public’ ) > 0 || !bp_core_is_multisite() ) {and the MU plugin:
ds_private_blog.php: http://wpmudev.org/project/More-Privacy-OptionsWith regards Anja(afoka)
May 22, 2010 at 6:54 am #79151r-a-y
Keymaster@xberserker – yup, when you upload an avatar, it outputs two files, that’s why I check if the file count is less than two. If it’s less than two, you’ll know that an avatar has just been uploaded. You’re right that the /avatars/USER_ID/ folder gets created on the first upload.
May 22, 2010 at 4:17 am #79145In reply to: Alternative to Facebook
Dan Cole
ParticipantHow likely is it that you or any of the other developers you’ve been talking with would make a plugin that adds WebID to WordPress in the near future?
May 22, 2010 at 3:28 am #79147Tosh
Participant@r-a-y I got it to echo the file count correctly. But when you upload a avatar it will always be 2 files. There is a bpfull.jpg & -bpthumb.jpg file. I assume the avatars/59/ is created when a new user uploads for the first time?
May 22, 2010 at 1:04 am #79139In reply to: BuddyPress Like
dre1080
Memberhow can i add the like to custom components??? if i want to like other things apart from activity updates
May 22, 2010 at 12:09 am #79137Dwenaus
Participanti’m sure a simpler filter would do the trick. Or better yet, only include plugins that have the keyword buddypress or BP in the title. all the real ones seem to.
May 21, 2010 at 11:34 pm #79136Makai Anthony
ParticipantAnyone has solution for this? Thanks so much!
May 21, 2010 at 11:21 pm #79134thekmen
ParticipantHave to agree, finding BuddyPress plugins that integrate with & add to BP is getting harder because of the current extend section.
May 21, 2010 at 10:56 pm #79133In reply to: agenda plugin and file sharing plugin
airfoil
ParticipantCheck out Peter Anselmo’s Group Documents plugin: https://wordpress.org/extend/plugins/buddypress-group-documents/
Peter does great work, and this plugin might get you very, very close to what you need. It provides a document repository for groups, allows uploaded files to be categorized and provides a backend management tool to determine allowable file types – among other features.
May 21, 2010 at 10:52 pm #79131In reply to: agenda plugin and file sharing plugin
airfoil
ParticipantI’ve been using that plugin for quite some time, and would love to see the mods you’ve made.
airfoil55 at gmail dot com
Thx!
May 21, 2010 at 10:49 pm #79130In reply to: agenda plugin and file sharing plugin
May 21, 2010 at 10:45 pm #79129Dwenaus
Participanta few examples of what I mean:
https://buddypress.org/community/groups/post-rich-videos-and-photos-galleries/home/ – does not integrate at all with BP
https://buddypress.org/community/groups/login-with-ajax/ – not a BP plugin, just compatible. um, who cares
https://buddypress.org/community/groups/default-blog-options/ – nothing to do with BP
https://buddypress.org/community/groups/bannerman/ – nothing to do with BP
and that was just the top of the first page.May 21, 2010 at 10:23 pm #79123In reply to: private mail at buddypress.org ?
r-a-y
KeymasterPMs are disabled on here for now due to spam; I’m guessing the old messages are still in the DB though.
Awaiting further word about this from Andy.May 21, 2010 at 10:23 pm #79122In reply to: private mail at buddypress.org ?
abcde666
Participantthe old website of bp.org was much easier to navigate and find information.
at least for myself…..May 21, 2010 at 9:53 pm #79119In reply to: BuddyPress / Thesis Custom Template Integration
foodin65
ParticipantI’d be interested in seeing how you did that. I’m trying to accomplish it on my community site now… but I can’t figure out how to make it happen.
May 21, 2010 at 9:50 pm #79118In reply to: Removing ”Blogs” out of Member navigations
@mercime
ParticipantSome thoughts;
– Assuming you don’t want others creating blogs in your installation, and you’re on WPMU, go to Site Admin > Options – under Registration Settings – choose ” User accounts may be registered.”
– Deactivate the Blogs component in admin dashboard – BuddyPress > Components Setup – under Blog Tracking – choose disabled
– Furthermore – https://codex.buddypress.org/how-to-guides/modifying-the-buddypress-admin-bar/May 21, 2010 at 9:48 pm #79117In reply to: Crop tool not working
thenone
ParticipantI had a same problem, currently im using WP 2.9.2 with Buddypress 1.2.3, it works for a while but after several hour the crop image cannot preview the uploaded image. And I installed WP as a directory for example http://pheewit.com/ directly to the root of htdocs, I didnt upgrade from previous installation, all WP and BP are fresh install, and im using a default theme of buddypress.
May 21, 2010 at 9:09 pm #79115In reply to: Register username with uppercase?
r-a-y
KeymasterIt’s because the registration function [bp_core_validate_user_signup()] only looks for lowercase usernames.
A ticket has been filed for this already:
https://trac.buddypress.org/ticket/2207May 21, 2010 at 8:13 pm #79109In reply to: agenda plugin and file sharing plugin
tapaninaho
ParticipantHey @samuelaguilera, did you have any luck with the file sharing plugin? Looking for something like that at the moment..
Cheers.
May 21, 2010 at 7:39 pm #79102In reply to: friendship chain 4 buddypress?
r-a-y
KeymasterSuch a plugin doesn’t exist yet.
-
AuthorSearch Results