Replies: 0
As a lot of people is asking how to use the filter for edit the label of the checkbox, here’s a working example (just add it on the functions.php file):
function customcheckboxlabel($text) {
$text = str_replace('Notify me via e-mail if anyone answers my comment.', 'text to show instead of the old one', $text);
return $text;
}
add_filter('cren_comment_checkbox_label', 'customcheckboxlabel');