<input type="text" id="bbp_anonymous_author"  value="<?php 
    bbp_is_topic_edit() ? bbp_topic_author() : bbp_is_reply_edit() ? bbp_reply_author() : bbp_current_anonymous_user_data('name');
    ?>
" tabindex="<?php 
    bbp_tab_index();
    ?>
" size="40" name="bbp_anonymous_name" />
		</p>

		<p>
			<label for="bbp_anonymous_email"><?php 
    _e('Mail (will not be published) (required):', 'bbpress');
    ?>
</label><br />
			<input type="text" id="bbp_anonymous_email"   value="<?php 
    bbp_is_topic_edit() ? bbp_topic_author_email() : bbp_is_reply_edit() ? bbp_reply_author_email() : bbp_current_anonymous_user_data('email');
    ?>
" tabindex="<?php 
    bbp_tab_index();
    ?>
" size="40" name="bbp_anonymous_email" />
		</p>

		<p>
			<label for="bbp_anonymous_website"><?php 
    _e('Website:', 'bbpress');
    ?>
</label><br />
			<input type="text" id="bbp_anonymous_website" value="<?php 
    bbp_is_topic_edit() ? bbp_topic_author_url() : bbp_is_reply_edit() ? bbp_reply_author_url() : bbp_current_anonymous_user_data('website');
    ?>
 /**
  * Output the contents of the `bbp_topic_reply_author` column
  *
  * @since 2.6.0 bbPress (r5886)
  */
 public function column_bbp_topic_reply_author($item = '')
 {
     bbp_reply_author_avatar($item->ID, 50);
     bbp_reply_author_display_name($item->ID);
     echo '<br>';
     bbp_reply_author_email($item->ID);
     echo '<br>';
     bbp_author_ip(array('post_id' => $item->ID));
 }