Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 25,151 through 25,175 (of 69,106 total)
  • Author
    Search Results
  • #147120

    In reply to: Buddypress 1.7

    modemlooper
    Moderator
    #147113

    There are lots of existing examples on the internet and in the codex on how to integrate BuddyPress into an existing theme. Start there, and come back with specific questions when you have them.

    #147112

    In reply to: Buddypress 1.7

    VegasKev88
    Participant

    Thanks JJJ. I appreciate the heads up. Can you include a link to the trunk. I haven’t used any of the dev versions of BP yet, so I have not a clue where trunk would be. Thanks in advance.

    #147109
    Ben Hansen
    Participant

    i think that already exists the wordpress admin bar which is also the buddypress admin bar should show up for any registered user given the proper settings.

    #147097

    In reply to: Buddypress 1.7

    If you’re starting a new site with BuddyPress, and are a developer, you should be using trunk. By the time your site ships, so will 1.7.

    #147093
    gorod
    Participant

    I am using Tersus theme from ThemeForest (which is advertised as BuddyPress theme).

    My permalinks are set to postname.

    BuddyPress is installed , to create forum it’s asking to install bbpress.

    So the bbpress (without the BuddyPress) forum works.

    But when I go to the BuddyPress newly created pages (groups, forums,members) I get those problems. Can’t create groups, can’t create forum, can’t send private message to memebers. Error message :There was an error saving group details, please try again.

    rickkumar
    Participant

    Thank you  @ubernaut

    I am now facing another problem:

    I have network enabled the main theme that we use on socialwikileaks-dot-com (it is X2 theme from themekraft) for members to use for their sites.

    Since there are 3 other themes (BuddyPress default, BuddyPress Twenty Ten, and BuddyPress Twenty Eleven) also available in the “theme” section, so some newly registered members have selected one of those 3 themes.

    I manage to delete two of the themes (Twenty Ten and Twenty Eleven) but I can not delete the “BuddyPress Default” theme.

    Since I want members to “only use the main site theme X2”, I am wondering if there is a way to:

    1. Delete the BuddyPress default theme?

    2. Not allow anyone to use any other theme except the main site theme X2 to maintain consistency thru out the network?

     

    Thank you for your time and help.

    #147090

    In reply to: Buddypress 1.7

    VegasKev88
    Participant

    Down to 11 tickets. I’ve been on the hunt to try and determine the release date, as I’m starting a bp project now and am wondering if the 1.7 release date will speed up/slow down my own release date of Jan 1st, 2013

    Any thoughts and comments on my situation are welcome.

    #147079
    rossagrant
    Participant
    #147076
    antoniobon
    Participant

    http://www.easyfasttravel.altervista.org/

    the site is still under construction. With other browser (mozilla, opera, etc) work fine, but instead with old IE appear the default header.

    #147074
    rossagrant
    Participant

    Okay it’s definitely a BP 1.6.2 error.

    Here it is:

    Fatal error: Call to undefined function wp_get_image_editor() in /home/mytestsp/public_html/wp-content/plugins/buddypress/bp-core/bp-core-avatars.php on line 521

    Do I ned to make a TRAC ticket for this?

    #147065

    In reply to: bad avatar quality!

    mostafaqanbari
    Participant

    @mercime
    i use buddypress 1.5.6 and wp 3.5.2 . i’ve google it already and i think it’s one of bp’s bugs!

    #147058

    Please post a link to your site.

    #147055

    Try disabling all plugins. Does that fix the issue?

    #147054

    @zachary-dubois – All three of the plugins I mention are Multi-site and BuddyPress-compatible. I also recommend SI CAPTCHA Anti-Spam.

    #147053
    Zachary DuBois
    Participant

    @themightymo,
    Before I install any of these are they verified for a BuddyPress Multi site install? I’m liking the look of those plugins.

    @dcavins,
    That first plugin hasn’t been updated in a very long time. Not sure if I should trust it. Also, its kind of annoying to manually approve users. I need something more automated.

    If WordPress had reCaptcha integrated that would be sweet.

    #147039
    aces
    Participant
    #147036
    @ChrisClayton
    Participant

    You may find this useful – https://buddypress.org/2009/05/customizable-slugs-in-buddypress/

    You can change the members slug by defining the BP_MEMBERS_SLUG constant before BuddyPress defines the default (eg. In wp-config or plugins/bp-custom.php is a fool-proof way to do that).

    #147035
    @ChrisClayton
    Participant

    As Ben said, BuddyPress has local avatar uploading AND gravatar intergration built in.
    Is the theme removing core functionality?

    Additionally, you can use a plugin for photo gallery features (there are loads. I tend to use BPmedia by rtCamp these days)

    #147030
    David Hunt
    Participant

    Ah, it’s already been logged and fixed for 1.6.2. I do wish 1.6.2 had been released already! Would have saved me a few frustrating hours.

    #147028
    David Hunt
    Participant

    Well, after being driven almost bonkers, I have solved this — and found what I think is a bug in BuddyPress 1.6.1.

    I went with @shanebpx’s great suggestion of using a get_var query:


    $content_id = $args['id'];
    global $wpdb;
    $content = $wpdb->get_var( $wpdb->prepare("SELECT content FROM ".$wpdb->prefix."bp_activity WHERE id = %d;", $content_id ) );
    $message .= wpautop($content);

    However, I was baffled by the fact that $content kept coming up empty. Until I finally took a look at how BuddyPress was calling do_action( 'bp_before_activity_delete', $args ); in /bp-activity/bp-activity-functions.php:


    if ( !$activity_ids_deleted = BP_Activity_Activity::delete( $args ) )
    return false;

    // Check if the user's latest update has been deleted
    if ( empty( $args['user_id'] ) )
    $user_id = $bp->loggedin_user->id;
    else
    $user_id = $args['user_id'];

    do_action( 'bp_before_activity_delete', $args );

    Yup, it’s apparently doing the bp_before_activity_delete action after BP_Activity_Activity::delete!

    I have edited my copy of /bp-activity/bp-activity-functions.php to put the do_action before the deletion.


    do_action( 'bp_before_activity_delete', $args );
    if ( !$activity_ids_deleted = BP_Activity_Activity::delete( $args ) )
    return false;

    // Check if the user's latest update has been deleted
    if ( empty( $args['user_id'] ) )
    $user_id = bp_loggedin_user_id();
    else
    $user_id = $args['user_id'];

    and at last, my email function works!

    Now, how do I go about submitting this as a bug…?

    #147027
    fitnessblogger
    Participant

    Hi Guys,

    I am also using Salutation theme for my website http://fitnessblogger.net

    although I agree the learning curve is quite steep for this theme… it does have some great features.. and I am slowly making sense of some of them…

    The forums were a pain to setup but now we have simplified them and we are only using the group forums for our site it seems to work better?? http://fitnessblogger.net/groups/

    This may help with the BuddyBar http://wpmu.org/daily-tip-how-to-disable-the-buddypress-admin-buddy-bar/

    There are a few options for spam / splogger protection… we are using WangGuard.. again this takes a little bit of use to understand and get set up but does seem to help us..

    Hope this helps a bit.. and happy to chat more if you would like

    PS. I am not an expert just learning as I go along 🙂

    Kind Regards

    James

    #147011
    Paul Wong-Gibbs
    Keymaster

    The WordPress error message says you need to get its parent theme; this is probably Tersus itself, and I found it on Github: https://github.com/splorp/tersus/

    Install and activate that plugin, and the error will clear for the child theme.

    Please also don’t ping most of the core BuddyPress developers on Twitter in future; these forums are the best place for support.

    #147009
    geoutah
    Participant

    First question: is this a Buddypress theme or just a WordPress theme?

    If this is not a Buddypress compatible theme, this would result in the theme not working.

    Try installing the theme first, without Buddypress. If it works, then you know it is not Buddypress compatible.
    I would carefully review the theme documentation and follow the installation and activation instructions. Most of the problems I’ve had start there.

    #147004

    In reply to: Buddypress Like on 1.6

    Ben Hansen
    Participant

    still not sure i understand how this is any different from favorite other then the name “like” i used to use that plugin cause someone requested it when we first built the site but when it stopped working i thought to myself “wait second why would i want redundant functionality anyway?” so i just erased it and moved on.

Viewing 25 results - 25,151 through 25,175 (of 69,106 total)
Skip to toolbar