BuddyBoss Home – Web › Support Forums › Plugins › BuddyBoss Media › issue with buddypress update
- This topic has 7 replies, 2 contibutors, and was last updated 9 years, 5 months ago by Alyssa.
Question
June 4, 2015 at 6:43 am #40928@neoseeyouHello, 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
June 4, 2015 at 8:54 am #40934@alyssa-buddyboss
AlyssaParticipant@neoseeyou I was able to update without any issues. Please try disabling other plugins to check for a conflict.
June 4, 2015 at 9:24 am #40936@neoseeyouHi 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 😉
June 4, 2015 at 6:19 pm #40950@alyssa-buddyboss
AlyssaParticipant@neoseeyou I’m not sure what you mean by “last subscription” can you elaborate?
June 5, 2015 at 3:35 am #40963@neoseeyouHello 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]
June 5, 2015 at 8:59 am #40966@alyssa-buddyboss
AlyssaParticipant@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
June 5, 2015 at 9:05 am #40968@neoseeyouYou right !
June 6, 2015 at 10:05 am #41023@alyssa-buddyboss
AlyssaParticipant🙂
- The question ‘issue with buddypress update’ is closed to new replies.