Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 67,001 through 67,025 (of 69,097 total)
  • Author
    Search Results
  • #40301
    megustaescribir
    Participant

    Hey, it´s working! Thanks a lot. I had to upload buddypress again. Funny because it´s the same version I previously uploaded… I´ll see what i can do now to have my site in spanish…

    #40297
    megustaescribir
    Participant

    I actually reverted to english on the wpmu admin´s option dashboard and it´s still not working. Maybe you´re talking about Buddypress´s language?

    Thanks a lot in advance,

    C.

    #40296

    In reply to: BP Avatars in bbPress

    Burt Adsit
    Participant

    bobman024, I’m kinda lost here. What plugin are we talking about? bpGroups? Download the latest at: http://code.ourcommoninterest.org/2009/02/14/buddypress-group-forums-for-bbpress/

    I just downloaded that ver and set it up again. Activates and operates.

    #40292
    Burt Adsit
    Participant

    sgrunt, ya I guess you wouldn’t need to mod the widget code, just the theme code. hmm. Well if Andy says it’ll go away by updating to latest trunk then it will. Warning! The theme directories have changed. See: https://buddypress.org/forums/topic.php?id=1675

    #40289
    Burt Adsit
    Participant

    I new this issue was familiar: https://buddypress.org/forums/topic.php?id=976

    Nobody seems to have figured out why this is happening. Please describe your configuration. subdirectory/subdomain, wpmu installed in a sub dir or the root, what ver of wpmu, …

    We are never gonna figure this out otherwise.

    #40283
    Burt Adsit
    Participant

    You’ll have to modify the member theme functions that display the fields in the profile. That gets generated in: /buddypress-member/profile/profile-loop.php

    by the function: bp_the_profile_field_value() in /mu-plugins/bp-xprofile/bp-xprofile-templatetags.php

    There’s a filter in there that you can hook: echo apply_filters( ‘bp_the_profile_field_value’, $field->data->value, $field->type, $field->id );

    So that you can detect these specific fields and change what gets generated by bp.

    #40282

    In reply to: How To: adding Links

    Burt Adsit
    Participant

    Let’s see, are you talking about all the links in the admin menu bar, the member theme or the home theme? It seems you want to know where *all* of them are.

    (sigh) Ok.

    The admin bar code is in: /mu-plugins/bp-core/bp-core-adminbar.php

    The code for the member theme is in: /wp-content/member-themes/buddypress-member

    The code for the home theme is in: /wp-content/themes/buddypress-home

    #40280
    Burt Adsit
    Participant

    You should ask johnjamesjacoby about this migrate issue. He’s done something like that recently. I think the answer is you need to export your data, using phpmyadmin or with the native export/import tool in wp.

    http://www.techtraction.com/2007/07/30/move-or-backup-wordpress-data-with-the-built-in-importexport-feature/

    Lots of stuff if you google ‘wordpress export’, ‘wordpress import’

    #40276
    danielfelice
    Participant

    Hi Guys,

    Theme Contest is going to be extended an extra month! Official annoucement soon!

    Thanks

    Dan

    #40273

    In reply to: BP-FBConnect Plugin

    benjeewest
    Member

    Hi Andy- huge thanks for a really useful plugin that makes buddypress even more attractive and exciting than it is already!

    I hate to be a noob, but when I try to activate the plugin, I get

    Warning: require_once(/home/


    /public_html/wp-content/wp-config.php) [function.require-once]: failed to open stream: No such file or directory in /home/


    /public_html/wp-content/plugins/bp-fbconnect/bp-fbconnect/wp-facebookconnect/common.php on line 11

    Fatal error: require_once() [function.require]: Failed opening required '/home/


    /public_html/wp-content/wp-config.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/


    /public_html/wp-content/plugins/bp-fbconnect/bp-fbconnect/wp-facebookconnect/common.php on line 11

    I’m guessing this is because I’m running 1.0-RC1 1030 , but the files available in the download page are RC1 too? Where can I get the correct version of Buddypress to work with this plugin?

    Cheers everyone, and thanks so much for all the hard work.

    #40263
    Matt Kern
    Participant

    found it over here…

    remove admin bar

    https://buddypress.org/forums/topic.php?id=1115

    #40259

    In reply to: limit 1 blog per user

    produlz
    Participant

    I found a solution, but I’m not a PHP programmer, It’s a hack of the code of this topic https://mu.wordpress.org/forums/topic.php?id=5930

    Let’s go only if you are using the lasted trunk:

    Open the mu-plugins/bp-blogs/bp-blogs-templatetags.php – Find this code starting at line 682 end at 696

    <?php printf(__("By filling out the form below, you can <strong>add a blog to your account</strong>. There is no limit to the number of blogs you can have, so create to your heart's content, but blog responsibly.", 'buddypress'), $current_user->display_name) ?>

    <?php _e("If you’re not going to use a great blog domain, leave it for a new user. Now have at it!", 'buddypress') ?>

    <form id="setupform" method="post" action="<?php echo $bp->loggedin_user->domain . $bp->blogs->slug . '/create-a-blog' ?>">

    <input type="hidden" name="stage" value="gimmeanotherblog" />
    <?php do_action( "signup_hidden_fields" ); ?>
    <?php bp_blogs_signup_blog($blogname, $blog_title, $errors); ?>

    <input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Create Blog &raquo;', 'buddypress') ?>" />

    <?php wp_nonce_field( 'bp_blog_signup_form' ) ?>
    </form>

    Replace using this newbie code:

    // One Blog Only HACK START
    <?php $blogscheck = get_blogs_of_user($current_user->ID);
    $blogarrayvalue = (get_object_vars($blogscheck[1]));
    $blogsiteURL = "http://locutorpro.com.br";
    if ($blogarrayvalue[siteurl] == $blogsiteURL)
    {
    echo "";
    printf(__("By filling out the form below, you can <strong>add a blog to your account</strong>.", 'buddypress'), $current_user->display_name);
    echo "
    ";
    printf(__("If you’re not going to use a great blog domain, leave it for a new user. Now have at it!", 'buddypress'));
    echo "
    ";
    echo "<form id='setupform' method='post' action='";
    echo $bp->loggedin_user->domain . $bp->blogs->slug ;
    echo "/create-a-blog'>";
    echo "<input type='hidden' name='stage' value='gimmeanotherblog' />";
    echo do_action( "signup_hidden_fields" );
    echo bp_blogs_signup_blog($blogname, $blog_title, $errors);
    echo "<input id='submit' type='submit' name='submit' class='submit' value='";
    printf(__("Create Blog &raquo;"));
    echo "' />
    "; echo wp_nonce_field( 'bp_blog_signup_form' );
    echo "</form>";
    }
    else
    {
    printf(__("Sorry, you can have 1 blog only.", 'buddypress'));
    }
    ?>
    // One Blog Only HACK END

    I hope it help!

    Thank you for all dev team!

    #40258
    Kunkel
    Participant

    http://www.fanbud.com

    Going to be the next best sports fan hub online :)

    #40255
    nicolagreco
    Participant
    #40254

    In reply to: Facebook connect

    danielfelice
    Participant

    Have you guys not seen the BP/WP FB Connect Andy modified?

    https://buddypress.org/forums/topic.php?id=1585

    #40249

    In reply to: wp-signup vs register

    Simon
    Participant

    Not specifically… although I have tried using the loader.php to load styles via custom.css over base.css. No effect. I can’t see a reference to bp_styles() in the buddypress templates anywhere… any idea where should I be looking?

    Cheers.

    update: Scratch that… found it in member theme. But adding that to the home theme has no effect (and it doesn’t appear to be included in the default bp home theme anyway).

    #40245
    Lance Willett
    Participant

    Not sure if I’m late to the game on this one, but I followed the instructions in the bp-forums directory (https://trac.buddypress.org/browser/trunk/bp-forums/installation-readme.txt) and the install went easily and quickly using the latest bbPress (checked out via SVN from trunk).

    I was prepared for a fight after reading this thread, but was pleasantly surprised that it worked the first time with no problems. ;)

    #40244

    In reply to: wp-signup vs register

    Simon
    Participant

    Also, using a custom theme seems to break the ajax calls for the BuddyPress widgets (groups, members etc.)… clicking the links in these widgets takes you to the respective directory pages rather than refreshing the widgets.

    #40228

    In reply to: Group Administration

    enlightenmental1
    Participant

    here is what I used to limit the group creation to admins only

    (can also be changed to allow other user levels if needed)

    hope this helps

    edit: bp-groups.php around line 205

    global $user_ID; if( $user_ID ) :
    if( current_user_can('level_10') ) {

    bp_core_add_subnav_item( $bp->groups->slug, 'create', __('Create a Group', 'buddypress'), $groups_link, 'groups_screen_create_group', false, bp_is_home() );

    }

    endif;

    #40226
    Timschmi
    Participant

    @James: Thank you for your comment. Did I get it right, that your wikis are only in the backend? We want wikis on the frontend like blogs or groups.

    @ostropunkt: PmWiki is really great. We have thought and discussed making group wikis? But our solution was, that wikis and groups are working in the same way.

    You have a list of all your wikis on your profil.

    You can have public and privat wikis.

    And you can invite your friends to your wiki.

    #40218
    nicolagreco
    Participant

    You could wait the integration of bp in wp,

    or (i think it’s better) you could try copying some tables in your new mu install:

    example:

    copy wp_users to wp_users

    wp_postmeta to wp_1_postmeta

    wp_posts to wp_1_posts

    etc etc..

    that’s a bit difficult to do, maybe others could help you better than me.. :)

    Nicola

    #40214
    Ekine
    Participant

    It would be great if users could be signed up without verifying their email address. Some users don’t receive the email because buddypress is lacking of a smtp setup.

    #40213
    Ekine
    Participant

    Sounds great to me. We have an ajax chat system on our board and our users couldn’t live without it. ^^

    It’s definetly very social and that’s what’s all about.

    #40201

    In reply to: Photo Galleries?

    lucifix
    Participant
    Quote:
    That’s not planned for 1.0 but next version!

    1.0 is near :)

    I own photography community and I’m thinking to move my site to Buddypress platform. But until albums won’t be ready I’ll stay where I’m now :)

    You can’t predict when will next version of 1.0 be ready, right? :)))

    Keep on good work guys, can’t wait till first official release!!!

    #40195
    zanzoon
    Participant

    http://www.ahtam.com

    Ahtam: I care

    Ahtam is the Arabic word for “I care”… Ahtam is a social network were members care for the world. Members blog about cancer awareness, being green, smoking cessation and much more…

    Please join my site and invite others

Viewing 25 results - 67,001 through 67,025 (of 69,097 total)
Skip to toolbar