MyBB Community Forums

Full Version: likes count in posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Mybb Community, 
what is the varialble to show the likes count on each post/thread 
i tried this {$post['tyl_unumrcvtyls']} but it showing me all the likes that the poster have 


[Image: sgrrYzW.png]

thanks for reading,
have a nice day.
For the likes count of an individual post, either of these should work:

{$post['ty_count']}

{$post['tyl_pnumtyls']}

For the thread, I'm not sure that there's a ready-made variable for you. You might need to hack the plugin for that.
(2020-05-13, 05:16 AM)Laird Wrote: [ -> ]For the likes count of an individual post, either of these should work:

{$post['ty_count']}

{$post['tyl_pnumtyls']}

For the thread, I'm not sure that there's a ready-made variable for you. You might need to hack the plugin for that.
thanks man