EmilyBilling
9 years agoMaven
Dynamically loading profile picture, name and title into custom component
Hi, I have a people carousel containing the profile photo (user avatar), first/last name and Title of staff members where I want to dynamically load the staff members’ details (avatar, name, title) from their profile. How is it possible to reference these dynamically in my html?
<!-- people Item -->
<div class=" people-item"> <a href="/t5/user/viewprofilepage/user-id/53">
<div class="people-icon"> <img src="dynamically-load-user-avatar-here"/> </div>
<div class=" people-title"> dynamically-load-user-name-here </div>
<div class=" people-descr"> dynamically-load-user-role-title-here </div>
</a> </div>
<!-- End people Item -->