Former Member
inherit
guest@proboards.com
253222
0
Nov 26, 2024 6:44:51 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Feb 19, 2019 14:42:25 GMT -8
Todge so I know you made an excellent plugin which recorded the top users with most posts, and I wanted to know if you can perhaps also make the top users with the most likes, like exactly like the posts plugin just with likes instead.
|
|
Former Member
inherit
guest@proboards.com
253222
0
Nov 26, 2024 6:44:51 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Feb 26, 2019 16:22:51 GMT -8
bump Todge is this possible?
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Feb 28, 2019 13:51:38 GMT -8
Sorry I missed this.
It should be possible. Do you want a straight table or separate table to include weekly, monthly etc.?
|
|
Former Member
inherit
guest@proboards.com
253222
0
Nov 26, 2024 6:44:51 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Feb 28, 2019 15:30:51 GMT -8
Sorry I missed this. It should be possible. Do you want a straight table or separate table to include weekly, monthly etc.? I think separate table please. Thank you.
|
|
Former Member
inherit
guest@proboards.com
253222
0
Nov 26, 2024 6:44:51 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 3, 2019 9:48:42 GMT -8
Todge so, may I ask when this can be completed please?
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Mar 3, 2019 12:40:51 GMT -8
How long is a piece of string?
Rest assured, I'm on it and will get it to you as soon as I am able.
|
|
Former Member
inherit
guest@proboards.com
253222
0
Nov 26, 2024 6:44:51 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 3, 2019 13:09:39 GMT -8
How long is a piece of string? Rest assured, I'm on it and will get it to you as soon as I am able. Okay, thanks.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Mar 5, 2019 13:34:21 GMT -8
@smithj, it has just dawned on me what you are asking...
Do you want the amount of liked POSTS a member receives, the most posts a member likes? Or do you have another plugin allowing members to like each other that you are talking about?
|
|
Former Member
inherit
guest@proboards.com
253222
0
Nov 26, 2024 6:44:51 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 5, 2019 13:55:02 GMT -8
@smithj , it has just dawned on me what you are asking... Do you want the amount of liked POSTS a member receives, the most posts a member likes? Or do you have another plugin allowing members to like each other that you are talking about? Um. I would like the amount of liked posts a member has received.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Mar 6, 2019 17:26:58 GMT -8
@smithj , it has just dawned on me what you are asking... Do you want the amount of liked POSTS a member receives, the most posts a member likes? Or do you have another plugin allowing members to like each other that you are talking about? Um. I would like the amount of liked posts a member has received. OK, I'll see what I can do. You should be aware though, that there is no way I can find out the total amount of likes a member receives. The original plugin deals with posts, which are kept count by PB, and we have access to a members post count, and so we can guarantee the total is accurate. With likes we can't do that. There is no way we can find out the total amount of likes a member has received in the past. This will mean that the 'Total' will only be from when the plugin is activated, and not from when the member joined the forum... Another issue is the fact that a member's post can be 'un-liked', which, if taken into consideration, will add a further complication to the coding. Because of the above mentioned points, I can't simply alter the current plugin to use the 'like count' instead of the post count, and chunks of it will need to be reworked, or even re-written.
|
|
Former Member
inherit
guest@proboards.com
253222
0
Nov 26, 2024 6:44:51 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 6, 2019 18:13:54 GMT -8
Um. I would like the amount of liked posts a member has received. OK, I'll see what I can do. You should be aware though, that there is no way I can find out the total amount of likes a member receives. The original plugin deals with posts, which are kept count by PB, and we have access to a members post count, and so we can guarantee the total is accurate. With likes we can't do that. There is no way we can find out the total amount of likes a member has received in the past. This will mean that the 'Total' will only be from when the plugin is activated, and not from when the member joined the forum... Another issue is the fact that a member's post can be 'un-liked', which, if taken into consideration, will add a further complication to the coding. Because of the above mentioned points, I can't simply alter the current plugin to use the 'like count' instead of the post count, and chunks of it will need to be reworked, or even re-written. $[user.likes] ? How is there no way to see how many likes a user has recieved?
|
|
Violette
Full Member
Chocolate Makes My Day
Posts: 901
inherit
199370
0
Sept 2, 2013 10:32:50 GMT -8
Violette
Chocolate Makes My Day
901
September 2013
violette
|
Post by Violette on Mar 6, 2019 19:39:12 GMT -8
How is there no way to see how many likes a user has recieved? If that is all you want, try this code, it works for me:
Mini-profile, right under Member is online
{if $[user.likes]} <br />Likes: $[user.likes] {/if}
|
|
Former Member
inherit
guest@proboards.com
253222
0
Nov 26, 2024 6:44:51 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 7, 2019 14:36:29 GMT -8
How is there no way to see how many likes a user has recieved? If that is all you want, try this code, it works for me:
Mini-profile, right under Member is online
{if $[user.likes]} <br />Likes: $[user.likes] {/if}Only problem is that they aren't the top ten most liked users. My point was that it's possible to record how many likes a user has.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Mar 8, 2019 11:16:20 GMT -8
OK, I'll see what I can do. You should be aware though, that there is no way I can find out the total amount of likes a member receives. The original plugin deals with posts, which are kept count by PB, and we have access to a members post count, and so we can guarantee the total is accurate. With likes we can't do that. There is no way we can find out the total amount of likes a member has received in the past. This will mean that the 'Total' will only be from when the plugin is activated, and not from when the member joined the forum... Another issue is the fact that a member's post can be 'un-liked', which, if taken into consideration, will add a further complication to the coding. Because of the above mentioned points, I can't simply alter the current plugin to use the 'like count' instead of the post count, and chunks of it will need to be reworked, or even re-written. $[user.likes] ? How is there no way to see how many likes a user has recieved? I do apologise, as I have said many times, not necessarily to you, I do not usually play with templates and was not aware that that option existed. I assume that you have that displayed somewhere in your threads?
|
|
Former Member
inherit
guest@proboards.com
253222
0
Nov 26, 2024 6:44:51 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 8, 2019 11:38:17 GMT -8
$[user.likes] ? How is there no way to see how many likes a user has recieved? I do apologise, as I have said many times, not necessarily to you, I do not usually play with templates and was not aware that that option existed. I assume that you have that displayed somewhere in your threads? Oh, it's fine. Yep.
|
|