Hi there,
I use Subscribe to Comments Reloaded and want to change the position from the subscription check box from under the "Leave a comment" button to above the button.
In the plugin FAQ there is the advice to use <?php if (function_exists('subscribe_reloaded_show')) subscribe_reloaded_show(); ?> where I want the check box to show up.
In my theme, I want to display it right after the following paragraph:
<?php comment_form(array(
'comment_notes_after' => '<p class="form-allowed-tags">blabla</p>',
)); ?>
How do I insert <?php if (function_exists('subscribe_reloaded_show')) subscribe_reloaded_show(); ?> into the comment_form area?
To be honest, the new comment_form routine is really hard to understand for me as a non programmer. Before introducing comment_form, at least for me it was easier to create themes. :/