The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Share:
Notifications
Clear all

[Solved] 0 comments

6 Posts
2 Users
1 Likes
1,328 Views
Posts: 10
Topic starter
(@albert)
Active Member
Joined: 2 years ago

Hi everyone.

Is it possible to leave the 'number of comments' field blank when there are no published comments yet?
I'd rather see nothing than '0 comments'?

Thanks alot.

Albert

5 Replies
Asti
Posts: 7098
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

Hi Albert,

You can use this custom code: 

if (!function_exists("wpdGetCommentsCountText")) {
        add_filter("wpdiscuz_comment_count_phrase", "wpdGetCommentsCountText", 10, 2);
        function wpdGetCommentsCountText($text, $commentsCount) {
            $count = (int) $commentsCount;
            if ($count) {
                return $text;
            }
            return "";
        }
    }

Put it in the active theme fucntcions.php file.

Posts: 10
Topic starter
(@albert)
Active Member
Joined: 2 years ago

Thanks for your quick reply but it doesn't work as I expected.
Instead of "0 comments" a plain and simple "0" is displayed.
The word "comments" is gone but a "0" with a green underline stays.
Wich is a bit confusing but a quite funny also.

1 Reply
Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7098

@albert,

Let me ask the developers if there is an easy solution we can provide you. I'll update the topic once I get a response from our team.  

Asti
Posts: 7098
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

@albert,

Please put this code in the functions.php file as well. 

add_filter('get_comments_number', function ($count){
    if($count == 0){
        return '';
    }
    return $count;
});

Then use this CSS code for removing the extra padding: 

.wpd-thread-info {
     padding-right: 0;
}

Put the code in the Top Admin Bar > Customize > Additional CSS > "Additional CSS" textarea, save it, delete all caches and check again.

Posts: 10
Topic starter
(@albert)
Active Member
Joined: 2 years ago

Yes, it works perfectly!
Thanks a lot.
I'm rating you 5++++ stars right now in your page

Share: