inherit
154226
0
Jun 25, 2023 5:37:27 GMT -8
Hassaan
76
May 2010
hassaan12
|
Post by Hassaan on Sept 3, 2020 3:09:14 GMT -8
Is there a way for each posters' number of likes to appear on their profile?
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Sept 3, 2020 10:42:07 GMT -8
Is there a way for each posters' number of likes to appear on their profile? No plugin necessary. Navigate to Admin > Themes > Layout Templates > User Profile > Summary (tab)Add this in where you want it to show: <tr> <td class="headings">Likes:</td> <td>$[user.likes]</td> </tr>
Note that the <tr> and <td> tags are part of a table layout, so just make sure the above code in inside a <table> tag. If you want to add to the mini-profile as well, go to Admin > Themes > Layout Templates > Mini-Profile and add this where you want it to be displayed: Likes: $[user.likes]<br />
|
|
inherit
262152
0
Feb 13, 2024 13:33:48 GMT -8
caladrius
107
September 2020
caladrius
|
Post by caladrius on Sept 22, 2020 13:30:38 GMT -8
I'll try this. (I'm posting here so that it shows up on my "Participated" for future reference.) I may have questions. Update:
I got it to work. I inserted the first set of codes in lines 82-85. I inserted the second code on line 25. Everything showed up exactly as expected.
|
|