Viewing 5 replies - 1 through 5 (of 5 total)
  • Without wanting to search the entire tutorial (an URL to your site would be easier), I think you mean this one in functions.php

    '#comment-' . get_comment_ID() );

    Just remove that.

    Peter

    Thread Starter cademortem

    (@cademortem)

    Thank you very much!

    I’m having the same problem, but I don’t have anything related to comments in my functions.php file……

    Here is a sample: https://jacobhalton.com/ics/fuji/

    That’s the only comment on the site because nobody cares about the site yet, but it still has a number “1” that I can’t figure out how to remove.

    Feel free to leave a reply on there to raise my comment numbers btw ??

    Thread Starter cademortem

    (@cademortem)

    Hi J.Halton,

    I had the same problem too. But after some trial and error I managed to solve it. The comment-numbers have a class in css. The class is called “ol”. If you want to remove the comment-numbers you have to paste this in your style.css:

    ol {
    	list-style-type:none;
    	margin: 0;
    }

    awesome, that makes sense, I didn’t think of that. Thanks I’ll let you know if it works

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove the comment number.’ is closed to new replies.