• Resolved MKDan

    (@mkdan)


    The version 1.0.4 displays comment form, it isn’t lazyloading (or) working by the button click. Didn’t check the articles with comments.

    So, I reverted back to Version 1.0.4. It works fine. I don’t want the comment form to display at the bottom. I have content below the comment form and don’t want users to scroll a lot.

Viewing 1 replies (of 1 total)
  • Plugin Author Joel James

    (@joelcj91)

    Hey @mkdan,

    Yes, you are right. That was a new feature added to the latest version. Comments form will be automatically loaded if there are no comments yet. We had more than 10 requests for this feature.

    If you still need to lazy load the comment form even if there are no comments, you can use the llc_can_lazy_load_minimum_count filter.

    add_filter( 'llc_can_lazy_load_minimum_count', function () {
        // Lazy load even if there are no comments.
        return 0;
    });

    Add this to your custom plugin or functions.php

Viewing 1 replies (of 1 total)
  • The topic ‘Version 1.0.5 displays comment form’ is closed to new replies.