WPIntell

Source evidence

Checkbox Position

Comment Approved · support · 2015-05-26T17:51:00+00:00

mixedsentiment
mediumseverity
0.84relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

6 / 35 rows with source links

17.1% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

29 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
brit77 resolved
First off, thank for adding the option for the default state of the checkbox! I have one last issue before I can make use of this plugin…the position of the checkbox. Can the checkbox be placed below the comment form button rather than above the comment form? I have one checkbox already under the submit button (via Jetpack, for subscribing to comments). Stylistically, it makes more sense to have all the checkboxes displayed together. Thank you! P.S. I see that this was asked already here . The topic is marked as resolved, but I’m not seeing a clear solution, so any further help on the matter would be much appreciated. 🙂 Hi brit77, Thanks for using the plugin. The plugin uses the “comment_form_default_fields” filter from WordPress itself to add a “notify_me” key value. You could, trough your own functions.php theme file, add a filter and hustle the fields around :). function modify_comment_fields($fields) { // do something with #fields here return $fields; } add_filter('comment_form_default_fields','modify_comment_fields'); Thanks, Niels, for this snippet. I’ve searched the internet, and unfortunately I can’t figure out the missing piece of the function to actually move the “notify me” field to below the submit button. Is this even possible? I hope so because I’d like to use your plugin but can’t do so until I can improve the UI by moving this check box. I’m sorry, it seems this filter will not work. There is currently no function withing WordPress to sort the custom comment fields.

Comments

3 shown
nielsvanrenselaar 2015-06-03T12:20:00+00:00

Hi brit77, Thanks for using the plugin. The plugin uses the “comment_form_default_fields” filter from WordPress itself to add a “notify_me” key value. You could, trough your own functions.php theme file, add a filter and hustle the fields around :). function modify_comment_fields($fields) { // do something with #fields here return $fields; } add_filter('comment_form_default_fields','modify_comment_fields');

brit77 2015-06-22T18:47:00+00:00

Thanks, Niels, for this snippet. I’ve searched the internet, and unfortunately I can’t figure out the missing piece of the function to actually move the “notify me” field to below the submit button. Is this even possible? I hope so because I’d like to use your plugin but can’t do so until I can improve the UI by moving this check box.

nielsvanrenselaar 2015-09-09T10:18:00+00:00

I’m sorry, it seems this filter will not work. There is currently no function withing WordPress to sort the custom comment fields.