Quote:
Originally Posted by Greeksgal
I'm sure this question has been asked already, but I can't find the answer, so I apologize now for repeating.
Is it possible to use the TY button, but without the words:
Thanks: 8
Thanked 57 Times in 25 Posts
which is located under my members Avatar on my forum.
Here is a picture which better describes what I am asking.
Thank you so much for your assistance.
|
No worries, I found what I needed in a post at
https://vborg.vbsupport.ru/showthrea...122944&page=81
If you don't want to show "Thanks: x" "Thanked 1 time in 1 post"
Go to the template called "post_thanks_postbit_info" and either delete all its contents or (I would do this second one) put a conditional at the beginning for example
(So only users with this usergroups can see it)
<if condition="is_member_of($bbuserinfo, 5,6,7)">
or so only peeople with those userids can see it
<if condition="in_array($bbuserinfo[userid], array(1,8,200))">
Don't forget to put the </if>
Did above and seems to work perfectly. Thank you all!