Add HTML before the comments link in wpDiscuz on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter("wpdiscuz_before_comment_link", function ($html, $comment, $user, $currentUser) {
$html .= "Custom Message";
return $html;
}, 10, 4);