Feature Request In Comments Template
-
Hello
I use Subscribe to Comments Reloaded plugin, so to let the users subscribe to their favorite posts. I believe STCR is the best comment-subscription plugin, although it has failings too. I think WordPress still lacks a sophisticated comment and post subscription system. There is a problem with STCR, which can not be solved by the plugin author. It should be modified by WordPress team. When we activate the plugin, the subscription checkbox appears below comment “submit” button, while it is very illogic to put a checkbox below “submit” button. I say it is illogic, because for one thing, “submit” button must be the last element of every form, but also blind users like me can not see that option before clicking on “submit” button. Most of times, they forget to check or uncheck that option before clicking on “submit” button, because they don’t read it before “submit” button.In order to solve the above problem, I go to wp-includes, to “comment-templates.php” in WordPress, and fine the following line:
<?php echo $args[‘comment_notes_after’]; ?>Then I change that line into:
<?php echo $args[‘comment_notes_after’];
if (function_exists(‘subscribe_reloaded_show’)) subscribe_reloaded_show();?>
This solves my problem and takes the checkbox to above the “submit” button, but whenever I upgrade WordPress, that file gets replaced and the feature gets deactivated. I would like to wish 3 things:
1- Add the above code to “comment-template.php”, so I won’t have to add it manually every time after upgrading to a new version of WP. You can do the same thing for the subscription checkboxes of mail-poet, subscribe2 and other comment-subscription plugins as well.
2- Add STCR to the default plugins that come with WordPress.
3- Create a sophisticated subscription system for WordPress, which has the same features as the subscription system of VBulletin. I believe VBulletin has the best subscription system. I can explain the reasons if needed.Thank you
- The topic ‘Feature Request In Comments Template’ is closed to new replies.