• I’m trying to paginate my comments on the front page. See, my comments are shown right there on the front page instead of visitors having to click “View Comments”. In “Discussion” I have it set to break comments into pages every 5 comments, but it’s only working when I view a single post. When viewing the front page or viewing “Categories” on the sidebar it doesn’t show page numbers at all, no matter how many comments.

    I’ve tried 3 different plugins for paginated comments including WP-Paginate. None of them are paginating the comments on the front page or in “Categories” either.

    I’m using the Fazio Theme.

    Is there code in the theme or in the WP files that I have to manually edit or add to?

    How can I get the comments to display in pages every 5 comments on the front page and in “Categories” ???

Viewing 4 replies - 1 through 4 (of 4 total)
  • does at least the restriction to 5 comments work?

    concerning the pagination links:
    if you look at this function here (which is likely to be involved in creating the comments pagination links):
    https://phpxref.ftwr.co.uk/wordpress/wp-includes/link-template.php.source.html#l1844
    (from line 1751 in wp3.0.1)
    it seems that the links are restricted to show on ‘singular’ pages, i.e. single.php and page.php

    in my trial, hacking this restriction did not lead to useful comment pagination links.

    Thread Starter giantman

    (@giantman)

    Darn. Alright i’ll just have to come up with something different or sacrifice the “Leave A comment” link.

    One more question (lol sorry)

    <a href="<?php the_permalink(); ?>">Leave a comment</font>

    I’m trying to change the font size of that link.I tried <.font size=””> and I tried adding a “size=400pt” but it the size=”” messed up the whole link.

    Would you happen to know how to properly change the size?

    if you want to use inline styles, try:

    <a href="<?php the_permalink(); ?>" style="font-size:400pt;">Leave a comment</a>

    Thread Starter giantman

    (@giantman)

    Worked. Thanks a bunch man.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Big problem’ is closed to new replies.