How To Translate or chang the checkbox label using filter
-
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');
- The topic ‘How To Translate or chang the checkbox label using filter’ is closed to new replies.