Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 55,926 through 55,950 (of 69,016 total)
  • Author
    Search Results
  • arezki
    Participant

    Quick note: This plugin basically has it all, except it is old and out of sync with the latest BP. Should be a terrific start:

    http://webdevstudios.com/support/wordpress-plugins/buddypress-registration-options/

    #69745
    Robert
    Member

    Just made another test.

    Now I’ve installed BuddyPress after upgrading to WP 3.0 alpha.

    Same result: browse image > upload > image doesn’t show but by clicking in crop it’s uploaded to the folder. The avatar place is empty (the text “Avatar Image” is displayed).

    #69744
    Andrea Rennick
    Participant

    Ah, okay. I know there were issues with this 2-3 weeks ago. I’ll see if I can go find out what’s up.

    #69743
    thirdnote
    Member

    Tried using my WB-FB-AuitoConn API keys and still same error, so it seems the error is not on facebooks side, since WB-FB-AutoConn works great

    ‘Fatal error: Uncaught exception ‘FacebookRestClientException’ with message ‘Session key invalid or no longer valid’ in /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php:3374 Stack trace: #0 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php(1819): FacebookRestClient->call_method(‘facebook.users….’, Array) #1 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facestream.php(372): FacebookRestClient->users_setStatus(‘this should aut…’, ‘1.0000012430197…’) #2 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facestream.php(339): facestream_facebookIt(‘this should aut…’) #3 [internal function]: facestream_activityToFacebook(‘this should aut…’) #4 /home/content/g/n/o/gnowels5a33qb/html/wp-includes/plugin.php(166): call_user_func_array(‘facestream_acti…’, Array) #5 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/buddypress/bp-activity/bp-activity-classes.php( in /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php on line 3374′

    #69740
    mlemberg
    Participant

    I have the same problem as @MariusOoms – the plugins doesn’t seem to sync from Facebook to Buddypress.

    Also, on a side notice, the “To Facebook” text in the update box could do with a bit more with. In my display i gets cut into two lines.

    #69737
    r-a-y
    Keymaster

    Don’t trial and error functions!

    Look in bp-core-templatetags.php to find conditionals.

    It takes less than five minutes to do this.

    bp_is_my_profile()

    bp_is_directory()

    bp_is_profile_component()

    bp_is_activity_component()

    bp_is_blogs_component()

    etc.

    It’s all there.

    [EDIT]

    Just updated the conditional template tags page in the codex:

    https://codex.buddypress.org/developer-docs/conditional-template-tags/

    #69735
    Robert
    Member

    I’ve upgraded using the Beta Testers plugin > Bleeding edge nightlies 4 / 5 hours ago.

    #69733
    modemlooper
    Moderator

    somebody asked how to add the login form to the front page.

    In widget.php

    find:

    <div id="third-section" class="widgetHome">

    add this right after:

    <?php if ( is_user_logged_in() ) : ?>

    <?php do_action( 'bp_before_sidebar_me' ) ?>

    <div id="sidebar-me">
    <a href="<?php echo bp_loggedin_user_domain() ?>">
    <?php bp_loggedin_user_avatar( 'type=thumb&width=40&height=40' ) ?>
    </a>

    <h4><?php bp_loggedinuser_link() ?></h4>
    <a class="button logout" href="<?php echo wp_logout_url( bp_get_root_domain() ) ?>"><?php _e( 'Log Out', 'buddypress' ) ?></a>

    <?php do_action( 'bp_sidebar_me' ) ?>
    </div>

    <?php do_action( 'bp_after_sidebar_me' ) ?>

    <?php if ( function_exists( 'bp_message_get_notices' ) ) : ?>
    <?php bp_message_get_notices(); /* Site wide notices to all users */ ?>
    <?php endif; ?>

    <?php else : ?>

    <?php do_action( 'bp_before_sidebar_login_form' ) ?>

    <p id="login-text">
    <?php _e( 'To start connecting please log in first.', 'buddypress' ) ?>
    <?php if ( bp_get_signup_allowed() ) : ?>
    <?php printf( __( ' You can also <a href="%s" title="Create an account">create an account</a>.', 'buddypress' ), site_url( BP_REGISTER_SLUG . '/' ) ) ?>
    <?php endif; ?>
    </p>

    <?php if(function_exists('twit_connect')){twit_connect();} ?>

    <form name="login-form" id="sidebar-login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login' ) ?>" method="post">
    <label><?php _e( 'Username', 'buddypress' ) ?><br />
    <input type="text" name="log" id="sidebar-user-login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" /></label>

    <label><?php _e( 'Password', 'buddypress' ) ?><br />
    <input type="password" name="pwd" id="sidebar-user-pass" class="input" value="" /></label>

    <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="sidebar-rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ) ?></label></p>

    <?php do_action( 'bp_sidebar_login_form' ) ?>
    <input type="submit" name="wp-submit" id="sidebar-wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" />
    <input type="hidden" name="testcookie" value="1" />
    </form>

    <?php do_action( 'bp_after_sidebar_login_form' ) ?>

    <?php endif; ?>

    #69732
    Andrea Rennick
    Participant

    Which version of WP out of trunk did you use? Was it from the last 2-3 weeks?

    #69728
    Gianfranco
    Participant

    Standard WP – Getting rid of the “subdirectory” in permalinks when WP is installed in a subdirectory

    Create a file called “bp-custom.php” in wp-content/plugins.

    Paste this:

    function my_bp_override_core_domain() {
    $domain = get_bloginfo('url');
    return $domain;
    }
    add_filter('bp_core_get_root_domain','my_bp_override_core_domain');

    Now, instead of having: mysite.com/subfolder/activity, you have: mysite.com/activity.

    via https://buddypress.org/forums/topic/permalinks-setup-with-wp-intalled-in-subdirectory-and-indexphp-in-root#post-43767

    #69715
    Anointed
    Participant

    Thank you, worked perfectly!

    In case anyone else runs into this issue, here are the changes

    bp-groups/bp-groups-widgets.php

    line 29:

    <?php if ( bp_has_groups( 'type=popular&per_page=' . $instance['max_groups'] . '&max=' . $instance['max_groups'] ) ) : ?>

    change to:

    <?php if ( bp_has_groups( 'type=popular&user_id=""&per_page=' . $instance['max_groups'] . '&max=' . $instance['max_groups'] ) ) : ?>

    One last question:

    I use widget_logic on my sidebars, what is the logic to say ‘is on members profile page’?

    Basically I duplicated the groups widget, one with the user logic, and one without. I can use my modified version in the footer, and the old one in the sidebar. That way I can also show what groups the member belongs to.

    I only want that widget to show up on buddypress profile pages. I just don’t see the logic statement anywhere.

    #69714
    thirdnote
    Member

    getting the same error as @pedromiguel

    could not see any directions for the facebook side of the the setup, just setup facebook to get api info?

    I am running fb-connect and another Wordbooker and WP-FB-AutoConn with no issues

    Also running tweetstream with no issues:

    http://thirdnote.net/activity/ is my connection url in the facebook app

    – is that a needed setting, as it is the only one I set up

    ok, simply – here is the error code:

    ‘Fatal error: Uncaught exception ‘FacebookRestClientException’ with message ‘Updating status requires the extended permission status_update’ in /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php:3374 Stack trace: #0 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php(1819): FacebookRestClient->call_method(‘facebook.users….’, Array) #1 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facestream.php(372): FacebookRestClient->users_setStatus(‘lets see if we …’, ‘1.0000012430197…’) #2 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facestream.php(339): facestream_facebookIt(‘lets see if we …’) #3 [internal function]: facestream_activityToFacebook(‘lets see if we …’) #4 /home/content/g/n/o/gnowels5a33qb/html/wp-includes/plugin.php(166): call_user_func_array(‘facestream_acti…’, Array) #5 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/buddypress/bp-activity/ in /html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php on line 3374′

    #69713
    r-a-y
    Keymaster

    Hope you knew that you didn’t need to move to WPMU for BuddyPress now… you can use standard WP since BP 1.2.

    r-a-y
    Keymaster
    #69708
    mlemberg
    Participant

    Thanks for a GREAT plugin!

    I’ve found a small bug I hope you can fix:

    When I write an update on Buddypress containing the letters æøå Facebook will convert them to:

    &aelig;&oslash;&aring;

    #69706
    r-a-y
    Keymaster

    Try setting the following in wp-config.php:

    define( 'BP_ENABLE_USERNAME_COMPATIBILITY_MODE', true );

    For more info, read this:

    https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/

    r-a-y
    Keymaster

    Hey Ted,

    A ticket is already created:

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

    Also related:

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

    Bumping ticket to major.

    John Stringfellow
    Participant

    First of all, I want to thank you all for your help. Sometimes I feel like I am writing to myself when I ask questions here. I am very grateful to have gotten so many responses and such good help!

    r-a-y,

    I will check into that option. I had used widget logic and one point for another issue, but I never thought about it in this context.

    Andrea_r,

    I did make a new page and apply that template. That’s why I don’t understand it not working!

    Bowe,

    I will try your option and see if I can get it working. Does your blog sidebar not show at all? And if it doesn’t show, what is showing in that space, no sidebar and just a wider content section?

    John

    #69699
    avi-m
    Participant

    Hey boon I tired your plugin again and Still not working for me. I think I will just give up this one for a while as it would the cosmos doesn’t want me using it just now.

    However I thought I would share the error messages in case they are of use.

    Warning: Variable passed to each() is not an array or object in /home/jewsbych/public_html/wp-content/plugins/forum-attachments-for-buddypress/forum-attachments-for-buddypress-bp-functions.php on line 461

    #69698
    Pedro Miguel
    Participant

    Fatal error: Uncaught exception ‘FacebookRestClientException’ with message ‘Updating status requires the extended permission status_update’ in /home/*******s/domains/**********.com/public_html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php:3374 Stack trace: #0 /home/******/domains/**********s.com/public_html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php(1819): FacebookRestClient->call_method(‘facebook.users….’, Array) #1 /home/******************/domains/***********************.com/public_html/wp-content/plugins/facestream/facestream.php(372): FacebookRestClient->users_setStatus(‘Estamos a fazer…’, ‘1.00000551739E+…’) #2 /home/******************/domains/***********************.com/public_html/wp-content/plugins/facestream/facestream.php(339): facestream_facebookIt(‘Estamos a fazer…’) #3 /home/******************/domains/***********************.com/public_html/wp-includes/plugin.php(166): facestream_activityToFacebook(‘Estamos a fazer…’) #4 /home/******************/domains/***********************.com/public_html/wp-content/plugins/buddypress/bp-activ in /home/******************/domains/***********************.com/public_html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php on line 3374

    Any clue how to solve this?

    (This when sending a mesage from my site)

    @mercime
    Participant

    You can add the code in wp-config.php right after “The Database Collate type…” section of the file

    #69689
    @mercime
    Participant
    #69687
    chembro303
    Member

    works like a charm now! Thanks guys!

    Pancho Perez
    Participant

    Hi,

    John, I can´t find the bp-custom.php on the buddypress plugin folder. Whe I try putting the code of define on the wp-config.php I recive an error os sintax (my be is because i´m not a programmer so don´t know where to write it)

    Can you help me?

    Cheers!

    Dwenaus
    Participant

    i believe this project is no longer alive. I needed this kind of functionality for groups, so I wrote this plugin: https://wordpress.org/extend/plugins/buddypress-group-tags/

Viewing 25 results - 55,926 through 55,950 (of 69,016 total)
Skip to toolbar