modern Member Apr 8, 2018 #1 How can I get some data from a specific user his avatar, name ... ? I want to make a staff page and I want to retrieve some data from a specific users by user id..
How can I get some data from a specific user his avatar, name ... ? I want to make a staff page and I want to retrieve some data from a specific users by user id..
Ozzy47 Well-known member Apr 8, 2018 #2 Staff page is already available, https://xenforo.com/community/members/?key=staff_members Upvote 0 Downvote
modern Member Apr 8, 2018 #3 ozzy47 said: Staff page is already available, https://xenforo.com/community/members/?key=staff_members Click to expand... I know but I want to make another with less data and better css style, custom staff page Upvote 0 Downvote
ozzy47 said: Staff page is already available, https://xenforo.com/community/members/?key=staff_members Click to expand... I know but I want to make another with less data and better css style, custom staff page
Ozzy47 Well-known member Apr 8, 2018 #4 Have you looked into how that page is populated and displsyed? You could research the code and replicate it with the info you wish. Upvote 0 Downvote
Have you looked into how that page is populated and displsyed? You could research the code and replicate it with the info you wish.
S S Thomas Well-known member Apr 8, 2018 #6 /src/XF/Pub/Controller/Member.php public function actionIndex starting at line 44 Upvote 0 Downvote
modern Member Apr 8, 2018 #7 Hmm, I need it on XF2 statement Something like this: Code: <tr><xf:avatar user="{$user.id_1}" size="m" href="" update="{{ link('account/avatar', $user.id_1) }}" /></tr> <tr><td><xf:username user="{$user.id_1}" rich="true" href="" /></td><td></td></tr> Upvote 0 Downvote
Hmm, I need it on XF2 statement Something like this: Code: <tr><xf:avatar user="{$user.id_1}" size="m" href="" update="{{ link('account/avatar', $user.id_1) }}" /></tr> <tr><td><xf:username user="{$user.id_1}" rich="true" href="" /></td><td></td></tr>