If you are using WP-Mollio theme in your Wordpress site, I’d suggest adding the comment_form hook in to your comments.php. Only if you have this statement, the plugins like “Subscribe-to-comments” will work.

How to add this hook?

  • Open comments.php
  • Find the lines of code shown below. You will find it near the end of the file.

<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /></p>
</form>
<?php // if you delete this the sky will fall on your head
endif; ?>

  • Add <?php do_action('comment_form', $post->ID); ?> just above </form> ending tag. Save the file.

This will allow all the plugins that depend on comment_form hook to work properly.