BuddyBoss Home – Web Support Forums Plugins BuddyBoss Media issue with buddypress update

Viewing 8 posts - 1 through 8 (of 8 total)
  • Question

    #40928
    @neoseeyou

    Hello, i just update buddpress plugin to 2.3.0 and now buddyboss media doesn’t seem to work anymore, meaning in the profil i can’t upload pictures or access the “picture” page of the user.

    Have you got a fix please?

    Thanks

    Answers

    #40934

    Alyssa
    Participant
    @alyssa-buddyboss

    @neoseeyou I was able to update without any issues. Please try disabling other plugins to check for a conflict.

    #40936
    @neoseeyou

    Hi and thank you for your quick support, conflict with BP List Newest members

    Problem solve but i miss this functionnality (display members with their avatar). By change do you know the function to list members by last subscription?

    Anyway thank you again 😉

    #40950

    Alyssa
    Participant
    @alyssa-buddyboss

    @neoseeyou I’m not sure what you mean by “last subscription” can you elaborate?

    #40963
    @neoseeyou

    Hello Tj chester,

    I wanted to display Display Recently Registered Users (sorry about my english).

    If someone want to do it as well, i put this code into my function.php

    function wpb_recently_registered_users() { 
    
    global $wpdb;
    
    $recentusers = '<ul class="recently-user">';
    
    $usernames = $wpdb->get_results("SELECT ID, user_nicename FROM $wpdb->users WHERE user_login != 'admin' ORDER BY ID DESC LIMIT 8");
    
    foreach ($usernames as $username) {
    
    $recentusers .= '<li>' . bp_core_fetch_avatar( array( 'item_id' => $username->ID, 'type' => 'full') ) . '<a href="' . bp_core_get_user_domain($username->ID) .'">' . $username->user_nicename . '</a></li>';
    
    }
    $recentusers .= '</ul>';
    
    return $recentusers;  
    }
    add_shortcode('wpb_newusers', 'wpb_recently_registered_users');

    Then i apply this shortcode inside a post or a page

    [wpb_newusers]

    #40966

    Alyssa
    Participant
    @alyssa-buddyboss

    @neoseeyou BuddyPress has a widget to show members with several sort options. You may want to look into that. Just go to Dashboard>Appearance>Widgets

    #40968
    @neoseeyou

    You right !

    #41023

    Alyssa
    Participant
    @alyssa-buddyboss

    🙂

Viewing 8 posts - 1 through 8 (of 8 total)
  • The question ‘issue with buddypress update’ is closed to new replies.