Tip for Buddypress Users – Links in User List
-
Want the user’s names in the list of users who have favorited a post to link to their buddypress profile page?
I made this little modification to achieve this:
Replace line 95 of favorites/app/Entities/Post/PostFavorites.php:
$out .= $user->display_name;
With
$out .= '<a href="' . site_url() . '/members/' . $user->user_login . '/">' . $user->display_name . ' <i class="fa fa-eye"></i></a>';/** RevolvedMedia Modification - Member Profile Link Addition */
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Tip for Buddypress Users – Links in User List’ is closed to new replies.