Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 58,726 through 58,750 (of 69,016 total)
  • Author
    Search Results
  • #62247

    In reply to: Buddypress Integration

    jgadbois
    Participant

    Ok, 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.

    #62243
    Paul Wong-Gibbs
    Keymaster

    Contact a forum moderator :) On that one.

    #62242

    In reply to: Buddypress Integration

    Paul Wong-Gibbs
    Keymaster

    Skeleton 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.

    #62241

    In reply to: Buddypress Integration

    Xevo
    Participant

    Take 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.

    #62238
    Michael Berra
    Participant

    Andy, 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 :-)

    #62231
    dpolant
    Participant

    The 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.

    #62228
    Xevo
    Participant

    1. 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.

    #62222
    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…

    #62221
    billygin
    Participant

    Hi 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

    #62218
    steveseven
    Participant

    I 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

    #62212
    Sofian J. Anom
    Participant

    @katemgilbert:

    Didn’t I have explain at your post. Is that not what you meant?

    #62210

    In reply to: Avatar Upload Issues

    jwhitehurst
    Participant

    So 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.

    #62205
    Mike Pratt
    Participant

    Well – 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!

    #62200
    r-a-y
    Keymaster

    Exactly designodyssey! If someone wanted to find out what you were using, they would find out!

    #62198
    designodyssey
    Participant

    With Firebug, not sure this would work anyhoo.

    #62194
    r-a-y
    Keymaster

    Read 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.

    #62192
    m2mediadesigns
    Participant

    or 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 ?

    #62191
    r-a-y
    Keymaster

    Make 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.

    #62190
    D Cartwright
    Participant

    Thanks, 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.

    r-a-y
    Keymaster

    Ahh ok, the second link is a bug!

    I’ll report this.

    Thanks anointed!

    [EDIT]

    Ticket created:

    https://trac.buddypress.org/ticket/1763

    #62188
    r-a-y
    Keymaster

    Cool! Glad you fixed your problem :)

    Sometimes when you look at the monitor too long, you get tunnel-vision!

    #62187
    PJ
    Participant

    My apologies. I’m sorry if it came off that way. I understand now.

    No need to make something so simple complicated for no reason.

    #62186
    m2mediadesigns
    Participant

    Thanks! Issue Solved!

    #62185
    m2mediadesigns
    Participant

    Duh!

    I even looked at that screen earlier today!

    Obviously a newbie!

    Thanks!

    #62183
    r-a-y
    Keymaster

    Login to your WPMU admin area and navigate to “Site Admin > Options”.

    There should be a header saying “Allow new registrations”.

Viewing 25 results - 58,726 through 58,750 (of 69,016 total)
Skip to toolbar