• CodePoet

    (@design_dolphin)


    I did a search on this, but unfortunately couldn’t find anything.

    The numbers of the comments aren’t counting in Internet Explorer 7.
    When I try to look in the source code I can’t find the numbers back. In Firebug I can’t find anything either.

    I managed to add additional numbers in the comments.php, but it won’t get rid of the original numbers put there by WordPress or the comment.php templates. I have tried two different comment.php templates, but that doesn’t seem to matter.

    I think I have got it narrowed down to comment-template.php in wp-includes. Ideally I would like to stop the numbers completely from showing, or at least be able to exume some control over them. Could I copy the function to functions.php and edit out the numbers there? and how would I do this i.o.w. what is best practices?

    Link to example page

    If you view it in Firefox for example, you’ll see it works fine.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter CodePoet

    (@design_dolphin)

    O.k. got the numbers to hide.

    The templates I used for comments.php uses an ol list with the class ‘contentlist’.

    comments.php:

    <ol class="contentlist">
    </ol>

    The following code hides the numbers:

    ol.commentlist  {
    list-style:none;
    }

    thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Comment numbering not counting in internet explorer 7’ is closed to new replies.