Not too sure what happened to my reply. I can’t see it anymore. Are you are able to see it?
Either way, another temp solution to what I’m trying to achieve would be to add a link to the users name. Here a screenshot of the user sidebar in the messages: https://ibb.co/zPvn6yr
I would like that the users display_name is linked to their profile.
In the template it shows like this:
<div class=”col-md-3″>
<div class=”card profile-card”>
<div class=”list-group list-group-flush”>
<div class=”list-group-item”>
<div class=”text-center”>
<span v-html=”message.profile.avatar”></span>
<h3>
{{ message.profile.display_name }}
</h3>
<small>{{ message.profile.title }}</small>
</div>
How could I link the {{ message.profile.display_name }} to that users profile page?
Thanks
-
This reply was modified 3 years, 11 months ago by
Norm Green.