• I found a bug where the like/dislike controls are output on existing comments, but the plugin’s front-end CSS and JavaScript are not loaded when comments are closed on the post. You only trigger loads upon the loading of the comments form, which doesn’t load when comments are closed. Without the CSS, the output is VERY ugly. Without the JS, the buttons don’t work.

    The fix is very simple: in wp-content/plugins/comments-like-dislike/inc/classes/cld-enqueue.php

    Change
    add_action(‘comment_form’, array($this, ‘register_frontend_assets’));

    to
    add_action(‘wp_enqueue_scripts’, array($this, ‘register_frontend_assets’));

    Hope you can add that to your next update.

    P.S.: I tried to send this to you on your page’s “Contact Us” form, but even with no code included I got “There was an error trying to send your message. Please try again later.”

You must be logged in to reply to this topic.