• Resolved slathe

    (@slathe)


    Trying out Customizr today and it is pretty cool.

    However, I can not figure out how to get the option to leave a comment to show up on my front page for individual posts.

    I currently allow 5 posts to show on the front page. In the 2015 Theme the post meta stuff show a option to “Leave a Comment” but not iCustomizr.

    See my site here.

    Note: if I open the post individually it shows an option to leave a comment but that would not be very obvious to users.

    Thanks for your help!

Viewing 12 replies - 1 through 12 (of 12 total)
  • Hi,
    the comment box is available just in “single” contexts. So in single pages or in single posts, not for posts in post lists.

    Thread Starter slathe

    (@slathe)

    Thank you for the quick reply.

    It is unfortunate that this basic capability is not available on this great theme.

    For me this will likely be a deal breaker and no going on from the free to the Pro version.

    If you would be so kind, a couple questions:

    1. What is the constraint that does not allow this functionality?

    2. Isthere is a plan to add this capability?

    Thanks again!

    Hi slathe,
    well honestly I don’t think this is a basic capability 😀 For example twentyfifteen doesn’t have it. am I wrong? Which other theme does have the comment boxes, and then the comment lists, after each post in the lists of posts, like the blog, categories and so on?

    1. It’s something can be done, maybe with a collapsible section (collapsed by default). But think about a page with 10 posts with each post having like 10 comments, you have to retrieve 100 comments every-time you load the page? A better way is to use AJAX and retrieve the list of comments on demand, just when the user clicks on “Show comments” (see collapsible section), IMHO. So something which can be done, but not “basic” and not trivial 😀 It’s mostly an additional feature.

    2. Sorry, dunno 😀 I’m not aware about this.

    You’re welcome 😉

    Thread Starter slathe

    (@slathe)

    Hi,

    Thanks again for the quick response.

    Twenty fifteen does have comment options in post lists:

    1. If a post has no comment it has a “Leave Comment” option in the post meta info.
    2. If a post has comments it shows a “Comment Count” button in the post meta info.

    So, yes pretty basic stuff and in many other WP themes,

    What they do not do, and here I agree with you, is show all the comments within the post list.

    I have left TwentyFifteen active on my site so you can see what the comment stuff looks like.

    Wait, sorry there’s a misunderstanding here 😀
    I thought you were talking about showing the comments (list of comments) in post lists (that’s the not “basic” :D), not just the number of comments and “leave a comment” link.
    Customizr does have the “number of comments” thing, it has the comment bubble, when comments are open and the post has comments, but yes, it doesn’t have the “leave a comment” link in lists of posts.

    If you go here: http://demo.presscustomizr.com/
    you can see the post “Post with comments”, with the comment bubble showing “27” (number of comments) and you can click on it.

    This option is in Content -> Comments

    Thread Starter slathe

    (@slathe)

    My apologies for not communicating this well originally.

    What you describe above is what I have seen and part of what led to my original poorly phrased question. Yes, everything looks great when an individual post is open. Commenting is obvious and well done.

    But for a reader looking at a post list there is nothing that will lead to comments or even suggest to them that leaving a comment is possible.

    Do you know why this has been left out of Customizr?

    Hi,
    just my opinion:
    I don’t agree with this part
    “But for a reader looking at a post list there is nothing that will lead to comments”

    Comment bubble – small or large (which states “N comments”) – is the theme author’s choice to display the number of comments in post lists. Both of them leads to comments.. If you want to be more explicit you can use the second one and the reader looking at a post list I think will understand is about “comments”, or am I missing something? Do you mean that the reader will not think to click on that anyway whether is the large or the small version?

    nothing to say about this one 😀
    “.. suggest that leaving a comment is possible”

    always talking from a reader point of view in post lists.

    Why “leave a comment” in post list has been left out?
    Don’t know why, probably was/is not considered primary, and/or maybe nobody has ever asked for that 😀 dunno

    Thread Starter slathe

    (@slathe)

    Ahh, I had missed the comment bubble. That helps.

    A couple of thoughts:

    1) Yes, once there are comments on a post the comment bubble works very well.

    2) If a post has no comments then my concerns about a reader not knowing it is possible to comment on a list post still hold. I would still like to see the bubble there showing “0 Comments”

    3) the Comment Bubble appears to only show up on the Standard Post format. It would be helpful if it also showed up on the other post formats.

    As someone new to this theme I really appreciate your patience and help!

    I see your points
    about 1/2) you have a friend ->
    https://wordpress.org/support/topic/show-comment-bubble-even-with-no-comments?replies=1

    3) Yes, with the alternate layout it’s so because the comment bubble is somewhat part of the title, and for aside/status … post formats the title isn’t shown

    The only thing I can do is giving you a code to show a “Leave a comment” link next to the post metas in post lists, you should put it in your child-theme functions.php:

    add_filter('tc_meta_utility_text', 'my_leave_a_comment', 30);
    function my_leave_a_comment( $html ){
      $message =  'Leave a comment';
    
      if ( ! is_single() && ! post_password_required() && comments_open() )
        $html = sprintf('%3$s | <span class="my-comments-link"><a href="%1$s#respond" title="%2$s">%2$s</a></span>',
                            get_permalink(),
                            $message,
                            $html
                        );
    
      return $html;
    }

    Thread Starter slathe

    (@slathe)

    Great, thank you.

    I will give this code a try once I have time to learn about child-themes.

    One last question before I mark this resolved:

    What is the best way to make suggestions/requests to the themes developer?

    Hi slathe, creating a child-theme is pretty straight-forward you can even download the Customizr child-theme. More on this subject here:
    http://doc.presscustomizr.com/customizr/creating-child-theme-customizr/

    About the last question .. I don’t think there’s a place for that 😀
    You can write your suggestions/requests here and I think they will be read and taken in account 😀

    Cheers

    Thread Starter slathe

    (@slathe)

    Thanks for all the help!

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Comment Options Not Showing for Individual Posts’ is closed to new replies.