MyBB Community Forums

Full Version: Please Help on this!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've installed Like plugin but how shall I make stats visible in posts.Refer image:

[Image: 28twcg.png]
Can you please post plugin which you installed so we can say you what exacly to add there?
(2012-06-28, 12:20 PM)JovanJ. Wrote: [ -> ]Can you please post plugin which you installed so we can say you what exacly to add there?

This one: http://mods.mybb.com/view/thank-you-like-system/
Open plugin file and find;
function thankyoulike_postbit($post)
and Change it into;
function thankyoulike_postbit(&$post)

Next find;
function thankyoulike_postbit_udetails($post)
and Change it into;
function thankyoulike_postbit_udetails(&$post)
Quote:- To customize the postbit block, you can use the following variables:
$post['tyl_unumtyls']: Number of thanks given
$post['tyl_unumrtyls']: This is fully formatted string (xx in yy posts)
$post['tyl_unumrcvtyls']: Number of thanks received
$post['tyl_unumptyls']: Number of posts in which the thanks were received

So add some of this following methods where you want.
(2012-06-28, 12:25 PM)Yaldaram Wrote: [ -> ]Open plugin file and find;
function thankyoulike_postbit($post)
and Change it into;
function thankyoulike_postbit(&$post)

Next find;
function thankyoulike_postbit_udetails($post)
and Change it into;
function thankyoulike_postbit_udetails(&$post)
Ok lemme try.BTW I wanted this to get displayed:

[Image: 34o2ago.png]

Thanks for the reply...Will update after trying above changes.

(2012-06-28, 12:25 PM)Yaldaram Wrote: [ -> ]Open plugin file and find;
function thankyoulike_postbit($post)
and Change it into;
function thankyoulike_postbit(&$post)

Next find;
function thankyoulike_postbit_udetails($post)
and Change it into;
function thankyoulike_postbit_udetails(&$post)

Not worked Sad

Someone please gimme a detailed explanation regarding my issue.From where I can do this?