add_filter( 'bbp_get_the_content', 'amend_reply', 10, 3);
Function amend_reply ($output, $args, $post_content) {
if ($args['context'] == 'reply' && $post_content == '') $output=str_replace('></textarea>', 'placeholder="Reply..." ></textarea>',$output) ;
return $output ;
}
This code works. I cannot post on the bbpress forum yet. I have a question .. How do I apply this code to other fields? e.g. e-mail and name. these fields appear for users who are not logged in.