How-to and Troubleshooting
3
Posts
2
Users
3
Reactions
872
Views
Dec 02, 2020 3:11 pm
I want to hide the likers names and only show the count, how can I do this?
2 Replies
Dec 02, 2020 6:47 pm
you can edit the post.php of the used layout
replace
<?php wpforo_post_likers($post['postid']); ?>
with (only the number)
<?php echo WPF()->post->get_post_likes_count($post['postid']); ?>
or with (number and Like)
<?php echo WPF()->post->get_post_likes_count($post['postid']); ?> Like
the best way to do this see here
https://wpforo.com/docs/root/forum-themes/theme-customization/