Please clarify a bit, if you remove the hook-code haven't you seen the issue?
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
I'll ask the developers about the issue and let you know ASAP
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
When i add this second part of the code the issue shows up. It seems that this part is causing the issue.
Please replace the code with the following one:
add_filter('get_comments_number', function ($count) {
if (is_single()) {
if ($count == 0) {
return '';
}
}
return $count;
});
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.