Search Results for 'buddypress'
-
AuthorSearch Results
-
February 2, 2010 at 6:54 pm #62247
In reply to: Buddypress Integration
jgadbois
ParticipantOk, I will check out the skeleton component. It seems like it’s pretty well commented, so hopefully I’ll be able to make heads and tails of it
I guess having to do the extra work of validation/building forms/etc should still be easier long run than integrating another framework.
February 2, 2010 at 5:55 pm #62243In reply to: Spammers in buddypress.org
Paul Wong-Gibbs
KeymasterContact a forum moderator
On that one.
February 2, 2010 at 5:53 pm #62242In reply to: Buddypress Integration
Paul Wong-Gibbs
KeymasterSkeleton component isn’t updated for 1.2 but shouldn’t be too far out. Grab a copy of the bp compat plugin, and when you get a missing function warning, look in the bp compat to find out what to use instead.
Also, I agree with what Xevo’s said.
February 2, 2010 at 5:48 pm #62241In reply to: Buddypress Integration
Xevo
ParticipantTake a look at this.
I really don’t recommend building in a php framework into a existing cms, it could cause a lot of issues.
February 2, 2010 at 4:25 pm #62238In reply to: external-group-blogs & group-twitter doesn't work
Michael Berra
ParticipantAndy, I think the problem is still the same as in the first version of the plugin. It doesn’t really fetch the new stuff. When I visit the backend, and push the update buttons (both twitter and external-blogs) then the stuff gets fetched (I just found out).
For the “old” version somebody recommended a solution to this (https://buddypress.org/forums/topic/external-group-blogs-plugin-update-bug)..) did you consider that?
It would be great, if those plugins would work correctly with the release of BP 1.2
February 2, 2010 at 2:47 pm #62231In reply to: Filtering the Activity Stream
dpolant
ParticipantThe simplest way, which might disable some things you don’t want disabled, is to turn off blog tracking in the wp-admin -> buddypress -> component setup.
To just get rid of blog posts in the activity feed, you need to remove some actions. Try this:
remove_action( 'save_post', 'bp_blogs_record_post', 10, 2);Remember this needs to go in a plugin or in bp-custom.php. There are other blog related activity things too like comments and new blog creations. You can get rid of these with similar syntax – just look through bp-blogs.php and find the lines that say “add_action” and have a record function in quotes.
February 2, 2010 at 2:26 pm #62228In reply to: Index page modification????
Xevo
Participant1. A buddypress theme isn’t so different from a standard wordpress theme, it just has a few extras.
2. Not sure what you mean by this, you have to install bp on wpmu, you can’t install them seperately. Bp is a plugin for wpmu.
3. Once installed bp correctly on wpmu or just wp, you get profiles, activities, groups etc.
Do you really understand what wpmu is? Basically its standard wordpress, but allows you or your users to make multiple blogs on one wordpress install. Buddypress allows you to turn your main blog into a social community, by adding profile and frieding options and the earlier named options.
February 2, 2010 at 12:09 pm #62222In reply to: How to customize signup form?
peterverkooijen
Participant@osasko, do you use the email login plugin? You can’t get rid of the username entirely, because WordPress is built around it, but you can autogenerate a username and hide the input field on register.php by adding type=”hidden”. It’s an ugly hack…
February 2, 2010 at 10:36 am #62221In reply to: forums : Fatal error: Cannot redeclare checked()
billygin
ParticipantHi r-a-y,
excuse me : some precision :
-> I use the BuddyPress install for bbpress and Buddypress + bbPress are on the same base
-> i didn’t upgrade from a previous version of WP-MU or Bpress : it’s a new installation for both of them
-> i don’t have any plugins other than BuddyPress installed
-> I’m using the standard BuddyPress theme
-> I didn’t modify the core files
thanks
February 2, 2010 at 10:18 am #62218In reply to: Site Wide Activity stream not working
steveseven
ParticipantI just fixed this problem with a hack. My site functioned similar to the site described by Bbrian017
all of the time since requests come to the function bp_core_time_since(). I noticed the line in bp_core.php as follows:
$newer_date = ( !$newer_date ) ? ( strtotime( gmdate( ‘Y-m-d H:i:s’ ) ) + ( 60*60*0 ) ) : $newer_date;
all time since functions on my site operated normally except in site wide activity where all time was plus 7 hours. it was easy to see that I could subtract 7 hours by editing the ( 60*60*0 ) tho be ( 60*60*-7 )
This hack made the activity stream right on but replaced all the other times with the Use GMT Timezone statement. from this, the obvious hack is to copy bp_core_time_since() in its entirety and insert it just below the original the rename both lines in the function that read bp_core_time_since() to bp_core_time_since2(). this way I could keep the time adjustment for the activity stream without causing a failure of the other time since calculations that work correctly. After you have duplicated and renamed the function bp_core_time_since2, all that is left is to change the line in function 2 by your offset, in my case -7 so ( 60*60*-7 ) then change the function reference in
buddypress/bp-activity/bp-activity-templatetags.php look for line 299
function bp_activity_insert_time_since( $content, $date )
then line 306 and change bp_core_time_since to bp_core_time_since2
the end result is the code works for both after the hack
February 2, 2010 at 5:01 am #62212In reply to: What happened to "Add Prebuilt Field''
Sofian J. Anom
ParticipantDidn’t I have explain at your post. Is that not what you meant?
February 2, 2010 at 4:29 am #62210In reply to: Avatar Upload Issues
jwhitehurst
ParticipantSo I was having the problem with this on the single blog version of wordpress but not the multi user version on the same server. Then on the same server I created a brand new install of wordpress and buddypress and got it working there. I eventually found that the upload path that worked had /var/www/vhosts/url/httpdocs/wp-content/uploads but the one that did not work had just wp-content/uploads. once i changed this everything worked.
February 2, 2010 at 2:48 am #62205In reply to: Hiding Buddypress from the View Source?
Mike Pratt
ParticipantWell – you could hide it but you’d have to hide a ton of references in html to the underlying framework and it woul dbe nearly impossible to completely pull off, conventions being what they are. If you’re that good, i bet you also can build one helluva theme!
February 2, 2010 at 2:12 am #62200In reply to: Hiding Buddypress from the View Source?
r-a-y
KeymasterExactly designodyssey! If someone wanted to find out what you were using, they would find out!
February 2, 2010 at 1:50 am #62198In reply to: Hiding Buddypress from the View Source?
designodyssey
ParticipantWith Firebug, not sure this would work anyhoo.
February 2, 2010 at 1:27 am #62194r-a-y
KeymasterRead this article on bp-tricks.com:
http://www.bp-tricks.com/tips_and_tricks/stopping-the-sploggers/
There’s a ton of methods listed there to stop spam.
February 2, 2010 at 1:04 am #62192m2mediadesigns
Participantor in my case, i was just so exited I was able to get the datebase and all the stuff set up without having to fall back on my usual tech guy LOL , by that point I probably had looked over that many times over.
Since you know about this it seems, which spam protection do you use ?
February 2, 2010 at 12:48 am #62191In reply to: new blog posts do not show up in activity stream
r-a-y
KeymasterMake sure you have the blog tracking component turned on in the BuddyPress admin area.
It should be under “BuddyPress > Component Setup” in the WPMU admin area.
February 2, 2010 at 12:42 am #62190D Cartwright
ParticipantThanks, r-a-y,
Basically what r-a-y has said is completely correct. It hooks into the action for recording an activity and then emails everyone in the group with a notification of the activity. The idea of this is that it can catch pretty much anything related to a group – so forums, ‘wire posts’, group joins, wiki edits, etc can all be included. By default it will support the buddypress basic functions + our groupwiki functions but I’m also trying to build in an easy way for people to extend this to support their own plugins with just a small amount of additional code to their plugin file.
Even without building in specific support for a plugin this will grab an activity update for a group and email it out, with a generic description for the activity type rather than something specific.
The feedback I’ve had so far suggests that users want a bit more control over default behviour/settings of the plugin and for a way for group admins/mods to post ‘must have’ alerts. I’m hoping to add this in the next couple of days and get the plugin out by Friday or some point over the weekend.
February 2, 2010 at 12:40 am #62189r-a-y
KeymasterAhh ok, the second link is a bug!
I’ll report this.
Thanks anointed!
[EDIT]
Ticket created:
February 2, 2010 at 12:31 am #62188r-a-y
KeymasterCool! Glad you fixed your problem

Sometimes when you look at the monitor too long, you get tunnel-vision!
February 2, 2010 at 12:11 am #62187In reply to: Hiding Buddypress from the View Source?
PJ
ParticipantMy apologies. I’m sorry if it came off that way. I understand now.
No need to make something so simple complicated for no reason.
February 2, 2010 at 12:07 am #62186m2mediadesigns
ParticipantThanks! Issue Solved!
February 2, 2010 at 12:00 am #62185m2mediadesigns
ParticipantDuh!
I even looked at that screen earlier today!
Obviously a newbie!
Thanks!
February 1, 2010 at 11:57 pm #62183r-a-y
KeymasterLogin to your WPMU admin area and navigate to “Site Admin > Options”.
There should be a header saying “Allow new registrations”.
-
AuthorSearch Results