Hi there,
I´d like to add a “subscribe to comments” ( or “Notify me of follow-up replies via email”) function to my single blog posts. Are there any reccommended plugins in combination with Enfold for that? Jetpack sems to be a bit overdone for just that little function.
Cheers
Michael
Hey Michael Oeser!
Have you tried these plugins?
http://wordpress.org/plugins/subscribe-to-comments-reloaded/
http://wordpress.org/plugins/subscribe-to-comments/
Best regards,
Ismael
Hi Ismael,
yes. I´m testing Subscribe to Comments Reloaded. It works of course but I´m trying to add the checkbox before the “Submit” button in the comment form. So I added
$args = array(
‘comment_notes_after’ => ‘<p class=”subscribecheckbox”>’. subscribe_reloaded_show() .'</p>’,
);
comment_form( $args, ” );
to /includes/comments.php but it adds the checkbox on top of the comment form and doesn´t work properly. Any idea why it´s not placed below the form and before the “Submit” button as it should be?
Cheers
Michael
Hi!
You would need to build a custom comment form template if you want to re-position the input fields. A basic guide can be found here: http://codex.wordpress.org/Function_Reference/comment_form
Enfold just uses the default comment form and the comment_form() function to call the default input fields and you can’t modify the output directly. You can try to use the comment_form_after_fields action though (see code in /wp-includes/comment-template.php and this thread: http://wordpress.stackexchange.com/questions/24116/using-filter-to-add-additional-fields-to-comment-form ) to add additional input fields to the form.
Cheers!
Peter
I will give it a try. Thanks anyway.