Search Results for 'buddypress'
-
AuthorSearch Results
-
April 26, 2010 at 12:10 am #75200
In reply to: BuddyPress and WordPress 3.0
April 26, 2010 at 12:07 am #75199stwc
ParticipantIf I understand what’s happening, the forums summaries blocks (for lack of a better description) in /support change their order based on where the most recent comments occurred. That’s kind of a useability nightmare, not knowing from visit to visit where things are going to be located on the page.
Edit: I’m not even sure what’s happening. My head’s a-spinnin’ trying to find stuff that was nearly muscle memory, having spent so much time on this site in the past.
I’m pleased that the site is using the latest BP, but man, it is really hard to find stuff you need to find. Harder — and I didn’t think this would be possible — that it was before, even. Patience, though, I know — presumably it will get better.
One thing that I think is really being pointed up here is how weak the forums component (the most useful component for us as developers/users of this site) is, and how much work can be done (through plugins, thus far, but that kind of makes the core look a bit weak if a dozen plugins are being used on the showcase site) to make the forums experience better.
That spotlight on places where there is room for improvement can’t be a bad thing, I hope, but it sure makes using the new site frustrating so far, and I’ve been working with BP for my own sites for almost a year, so I’m familiar with its quirks already. New users? I can’t help but think they’d be a little put off.
April 25, 2010 at 11:59 pm #75198In reply to: BuddyPress Like
stwc
ParticipantI’ve ported this (in a very semi-informed and probably mistake-filled way) to work with Forums posts. Works flawlessly on my testbed install, and I’ve been trying to contact Hempsworth here and via his site(s) to send him my work if he’s interested in using it at all.
Posting this here in case he sees it and not email or PM or etc.
stwc
Participantr-a-y
KeymasterVia plugins.
Forum attachments for BP:
https://buddypress.org/community/groups/forum-attachments-for-buddypress/oEmbed for BP:
https://buddypress.org/community/groups/oembed-for-buddypressApril 25, 2010 at 11:46 pm #75194In reply to: Featured Members Plugin and fatal error
Jeff Sayre
ParticipantAll support related questions for the Featured Members Widget should now be made with the Featured Members Widget Group forum. You must first join the group to be able to post to the support forum. While your there, please consider making a donation to keep me alive!
https://buddypress.org/community/groups/buddypress-featured-members-widget/forum/
April 25, 2010 at 10:21 pm #75191@mercime
ParticipantApril 25, 2010 at 10:08 pm #75190Ruth Maude
ParticipantThe /*disable blog signup for non logged in member*/ code from @sbrajesh didn’t work… it didn’t remove the create a blog from the signup page.. I got a spam blog within minutes.
ah well that’s it for this rainy Sunday afternoon…. When I get some time next I’ll start but updating to php5 and then I’ll check back with the forum. Thanks everyone!
~ Ruth
April 25, 2010 at 9:56 pm #75189r-a-y
KeymasterIt’s better to make your changes in a child theme. This way your changes will not be overwritten when you have to upgrade BP.
April 25, 2010 at 9:48 pm #75188In reply to: [New Plugin] CubePoints Buddypress Integration!
Tosh
ParticipantIt’s something I can look into. Not sure how off hand. I do have CubePoints working with Simple:Press Forum though. But it’s a direct edit of a file.
April 25, 2010 at 9:30 pm #75187stwc
Participant(Confirming my blockquote was stripped in my reply, above)
April 25, 2010 at 9:29 pm #75186stwc
ParticipantBoth of these were powerful tools for me as a moderator.
And indispensable as a user!
Link to forum thread post item in Activity Stream should link to actual post. I’ve done this on my own site by adding an id to the a:link with post-(post#). Needs to be pagination-aware, too, of course.
April 25, 2010 at 9:19 pm #75185In reply to: Is there a plugin for sitewide comments?
@mercime
Participant@skcsknathan001, second what @Andrea_r said. The plugin’s working very well in WPMU 2.9.2 with BP 1.2.3 using subdomain structures. I haven’t tested this yet in installs with subdirectory strucutres, but since all your other MU plugins – Ada Recent Posts, Ada List All, etc – work well in both structures per my experience, I don’t foresee any problems

In addition, kudos for adding an admin page for this plugin at Site Admin > Ada Site Feed to make it easier for others to input the correct feed URL’s
The plugin’s full-feed also included the first five thumbnails of images I uploaded via BPGallery rc4 and published to activity stream – very cool.Many thanks again..
April 25, 2010 at 8:43 pm #75183In reply to: Buddypress version of wordpress 'mystique' theme?
thekmen
Participantmore or less, you can test it out over on:
http://mystique.bp-theme-converts.comI’ll zip it up if you want tomorrow.
April 25, 2010 at 8:37 pm #751825887735
InactiveI noticed “add friend” was replaced by “follow.” Profile details seem private. And, I like the permalink button in the activity streams.
April 25, 2010 at 8:08 pm #75180In reply to: Buddypress version of wordpress 'mystique' theme?
Kevin Ryman
ParticipantHas anyone made this BuddyPress-compatible yet?
April 25, 2010 at 7:50 pm #75178Ruth Maude
ParticipantTHANK YOU! THANK YOU! THANK YOU!
So all I had to do was add the following two code snippets to my /wp-content/plugins/buddypress/bp-themes/bp-default/functions.php file and both these issues are fixed! Next step will be upgrading to php5.
/*redirect activation email to admin for approval*/
function my_redirect_activation_email()
{
return get_site_option( “admin_email” );
}
add_filter(‘bp_core_activation_signup_user_notification_to’, ‘my_redirect_activation_email’);/*disable blog signup for non logged in member*/
add_filter(“wpmu_active_signup”,”bpdev_check_current_users_blog”);
function bpdev_check_current_users_blog($active_signup){
global $current_user;
if( !is_user_logged_in() )
return “none”;
else
return $active_signup;//if the user is logged in, do not change the site policies
}April 25, 2010 at 7:40 pm #75176Ruth Maude
Participantfound it I think… wp-content/plugins/buddypress/bp-themes/bp-default/registration/register.php, line 225,
April 25, 2010 at 7:20 pm #75175Ruth Maude
ParticipantThanks so much @r-a-y that code worked….
I’m really struggling to find my way around – I’m experienced with WP but not with WPMU or BuddyPress structure. How do I change this text?
Sign Up Complete!
You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.April 25, 2010 at 7:20 pm #75174r-a-y
KeymasterTry using the post snippet I posted above.
April 25, 2010 at 7:06 pm #75172In reply to: [New Plugin] CubePoints Buddypress Integration!
5887735
InactiveAny chance to get this working for group forums?
April 25, 2010 at 7:04 pm #75171Ruth Maude
Participant@r-a-y I’m using WPMU
April 25, 2010 at 7:02 pm #75170In reply to: Adding comment counts to BuddyBar
Ipstenu (Mika Epstein)
ParticipantSince the code … code here is weird right now: http://buddypress.pastebin.com/xZuQapR1
Line 28 is the one I’m 99% sure is wrong.
April 25, 2010 at 7:01 pm #75169r-a-y
Keymaster
function my_redirect_activation_email()
{
return get_site_option( "admin_email" );
}
add_filter('bp_core_activation_signup_user_notification_to', 'my_redirect_activation_email');
Add this to wp-content/plugins/bp-custom.php or your theme’s functions.php file.
April 25, 2010 at 6:55 pm #75168Ruth Maude
Participant@r-a-y I have no idea where to begin with this…. I guess I’ll give the core hack a try
thanks
-
AuthorSearch Results