Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

How To Translate or chang the checkbox label using filter

$
0
0

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');
  • This topic was modified 35 minutes ago by djdecibel.

Viewing all articles
Browse latest Browse all 59525

Trending Articles