Quote:
Originally Posted by vimarc
In threads profile section above rep power showing thanks/like with arrow image how to get rid of that
Instead of image with arrow show total thanks/like
e.g. thanks/likes=200
|
In the product's general settings, set "Manual Postbit Deployment" to "Yes" and then in a plugin hooked at "postbit_display_complete" use the condition:
PHP Code:
$post['dbtech_thanks_settings'] == 0
to make sure the user's settings are honored with respect to whether they wish for the data to be displayed, and use the variables:
Code:
$post['likes_received']
$post['likes_given']
wrapped in whatever HTML you desire, added to whichever template hook you want.