double comment information

Hello everyone!

Could you help me to remove/deactivate the first ‘Leave a comment’ link from under the post - but with keeping the comment section as it is, with the second info ‘Leave a reply’. Pretty please.

Kind regards,
Monika

Hi Monika,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

body.single-post span.comments-link {
    display: none;
}

Best Regards,
Movin

Hello, I am definitely better now :slight_smile:
it worked, thank you!

Kind regards
Monika

You are most welcome here :slight_smile:

Hi, Movin!

First and foremost, thank you for a great theme :slight_smile:

I have had the same issue as the topic starter, and the code you suggested has fixed the problem on the single post page. However, on the homepage, there is still a line “Leave a comment” under each “Read more” link. How can I delete it from the homepage, too?

Thank you,
Olya

Hi Olya,

You can also remove it from the home page by using the following CSS code.

.entry-footer span.comments-link {
    display: none;
}

Best Regards,
Movin