placeholder text in new topic form
-
hello all,
i was able to add a placeholder text using below in reply form
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=”If you are attaching media, please wait for few seconds as media uploads after clicking submit button. Do not click on refresh or back button. Depending on media size, upload time will depend.” ></textarea>’,$output) ;
return $output ;
}however i don’t how to do this for new topic form. please help me.
- You must be logged in to reply to this topic.