Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 67,326 through 67,350 (of 69,061 total)
  • Author
    Search Results
  • #39109

    In reply to: BP Avatars in bbPress

    Burt Adsit
    Participant

    I like the inclusion of ‘signature’ in a profile field! Nice idea.

    I’ve updated bbGroups to optionally transfer all users over to bbpress meta or just users who are in groups. Skipping the bbpress/buddypress utility user.

    I’ve got all xprofile groups and group field values going to bbpress.

    Got a template tag that allows getting any of those values by user, group, field.

    Did some cleanup internationalization for text.

    Now doing testing. Gotta look into the problem with tags for hidden groups showing up in the tag cloud. I don’t think you’d be interested in any of this. You’ve already got that stuff implemented. :)

    I think that the only mod of yours I stepped on was the oci_get_user_filter() changes you included in there. I added another filter function oci_get_xprofile_filter($user) that adds all the xprofile fields to the $user array. It won’t break your mod, it’ll just add all the xprofile fields again.

    /**

    * oci_get_xprofile_filter()

    *

    * This filter adds all xprofile groups and group fields to bbpress

    *

    * @param <array> $user

    * @return <array> $user array for xmlrpc transport

    */

    function oci_get_xprofile_filter($user){

    $xprofile_groups = BP_XProfile_Group:: get_all(true); // all except empty groups

    foreach($xprofile_groups as $group){

    foreach($group->fields as $field){ // all fields for group

    $field_obj = new BP_XProfile_Field($field->id, $user,true); // this field

    // xprofile_groupname_fieldname to prevent conflicts

    $user = array(‘group’ => $group->name, ‘name’ => $field_obj->name, ‘value’ => $field_obj->data->value, ‘type’ => $field_obj->type);

    }

    }

    return $user;

    }

    add_filter(‘oci_get_user’,’oci_get_xprofile_filter’,10,1);

    #39105
    netspencer
    Participant

    anyway, the plugin should work but it doesn’t really keep the functionality of buddypress… for that we both need assistance… what the plugin does it esentially create an entire new site for wpmu, one that can have a seperate set of users and everything… i’ve been able to set up seperate buddypress set ups on both sites but havn’t’t been able to combine it…

    hope this helps!

    #39103

    Okay, so here’s a question…

    Do you think it’s possible to use this plugin, to have both subdomains and subdirectories with WPMU and BuddyPress?

    Lets say I use this plugin to map a blog to red.mydomain.com… Can I then map other blogs to that same subdomain, but have them utilize the built in subdirectory install method of WPMU?

    So I could have…

    red.mydomain.com/bob/

    red.mydomain.com/fred/

    red.mydomain.com/murphy/

    But also have…

    blue.mydomain.com/bob/

    blue.mydomain.com/fred/

    blue.mydomain.com/murphy/

    And have them be totally different blogs with totally different content, underneath the same MU install?

    I would create a subdomain in my hosting package to accommodate for it of course, but since MU would be setup to have sub directories, and I can map each blog specifically, unless I’m going crosseyed, I see this as doable.

    #39102
    netspencer
    Participant

    looks awesome… hope it works in buddypress!

    I’ll let you know how it works!

    THANK YOU SO SO MUCH!

    Anointed
    Participant

    Looking good Nicola.

    I love your plugins and the support you provide, it’s very much appreciated.

    btw

    Maybe an error with the forum software here?

    This post said it has 3 replies prior to me entering this one, however there are none.

    #39098

    In reply to: Translating BuddyPress

    Dedy Sofyan
    Participant

    First of all, BuddyPress is so promising. Keep up the good work!

    Currently, I’m involved in implementing BP for a local NGO, and I’m happy to share the translation files.

    I’ve done translating the “Bahasa Indonesia” for the RC-1 version and posted on the codex page:

    https://codex.buddypress.org/translations/indonesia-indonesian-id_id/

    Feel free to comment and correct any error.

    #39089
    dillahbaraja
    Member

    http://www.barajaonline.com It’s Baraja Online Community

    Burt Adsit
    Participant

    Hi people. The combo download for RC-1 from buddypress.org is fine in both the zip and tar.gz versions. Everything is where it should be. Just checked.

    When does this happen? Clean install, activate the home theme visit the root blog and then you get this error? Or does this only occur when you are in the member theme area such as your profile and then try to visit the home theme? For example you click ‘blog’ or ‘members’ buttons.

    I think that something is trashing a WP constant called TEMPLATEPATH that is created in wp-settings.php >> define(‘TEMPLATEPATH’, get_template_directory());

    It’s either not getting set correctly or it’s getting fubar’ed later, somehow.

    Have you tried activating a different theme for the root blog? Do you get the same error? Try just activating *anything* else other than the bp home theme and then do what you did to reproduce the problem.

    Trying to narrow things down. Lemme know.

    p.s. I flipped the red light switch on this thread so that others may join in the fun too.

    #39085
    Trent Adams
    Participant

    https://trac.mu.wordpress.org/browser/branches/2.7

    Zip at the bottom of the page or if you use SVN you can use that URL as well.

    Trent

    #39082
    Mythailife
    Participant

    And where is that downloaded?

    #39074
    Trent Adams
    Participant

    No, it can be tested by downloading the WPMU Branch of 2.7. It is not in trunk.

    Trent

    #39073
    Mythailife
    Participant

    Is that patch in the latest version of MU?

    #39071
    Doodlebee
    Participant

    Awesome – thanks so much – that’s *exactly* what I was hoping to hear :) (Yay – now I get to finally play with it!)

    #39068

    You could look into modifying an existing WordPress plugin, I think called “a member” that will help you with your pay for subscription situation.

    BuddyPress certainly could have “private” blogs, you would just need to restrict user access to each others blogs by checking the available author ID’s against the current blog ID, and if they aren’t an author, bounce them back somewhere.

    Sounds like BuddyPress will be a very good starting point for you, you will just need to mold it to fit your needs.

    #39066
    gogoplata
    Participant

    Any more ideas?

    I’m planning on applying the above patch, cleanly installing the trunk tonight to make sure there’s no older files lingering on the server, and am also going to analyze the database to see whether it’s a problem with the events being recorded to the DB or whether it’s with the output.

    Hopefully it’s as simple as that but I’m afraid it’s likely more serious.

    #39064
    Erwin Gerrits
    Participant

    See new thread https://buddypress.org/forums/topic.php?id=1488 for the twitter plugin. Test, test, test please!

    alainhc
    Member

    burtadsit, there´s no confusion on the proper location of themes. You can try to install the last release of buddypress and wp mu 2.7 and you´ll see the error.

    Thanks to jfcarter for giving one solution.

    Alain

    #39059
    Alex
    Participant

    > @brianbrey, How do you know this?

    A couple of months ago Zohar Babin said he was interested in helping, https://buddypress.org/forums/topic.php?id=367#post-1647

    Burt Adsit
    Participant

    I think there must be some confusion as to the proper location of themes. See:

    https://codex.buddypress.org/getting-started/using-the-buddypress-themes/ for an overview.

    You shouldn’t have to rename directories if everything is in the right spots.

    #39047
    danielfelice
    Participant

    check out http://www.freebuddypressthemes.com

    keep an eye on it over the next month or so :D

    #39041

    You could make a xprofile field that says “Outside Blogs” and they could list them there for now. They wouldn’t link to them yet however, and there’s an enhancement in the trac to allow for different formats of fields that will allow this later.

    I suspect however that your goal is to have these blogs show in the “Blogs” area of BuddyPress. I think that’s a novel idea, and I don’t think it would be too difficult to do really, but it means that the blog area needs to be explored more, versus it only being a front end layer for all of WPMU’s blogs.

    I think that they best they could be however would be links to outside blogs, and that keeping it within the content of your site would be difficult. (It would require an iFrame most likely, which I suspect most of us try to avoid.)

    #39040

    First thing that I had to do was delete all cookies and login to BuddyPress fresh.

    Things to double check:

    1.) You’ve correctly added the keys in both config files.

    2.) You’ve installed and correctly configured both necessary plugins, one on each side.

    3.) Check the names of your cookies in Firefox and make sure the wordpress_ cookies all have the same string of text behind them. If not, your keys in your config files are wrong.

    4.) You’ve modified both config files with all the little extra things they need done to them.

    #39038

    Anytime! ;)

    #39037

    In reply to: Upgrading

    jahshaka
    Member

    is there any info on how to upgrade from a 2.6.x wpmu/buddypress beta 1 install to a 2.7 rc1 install?

    ie do i need to disable the buddypress plugins

    upgrade wpmu to 2.7

    reinstall the plugins?

    thanks

    alainhc
    Member

    Hi. I had the same problem with buddypress, and i had to to what jfcarter suggested: duplicating the buddypress-member directory and naming it buddypress-home. But I think must be a better solution. Anyone knows which version of buddypress doesn´t have that problem?

    Alain

Viewing 25 results - 67,326 through 67,350 (of 69,061 total)
Skip to toolbar