OK I found it.
I’m talking about this code
/********************* BEGIN DEFINITION OF META BOXES ***********************/
// prefix of meta keys, optional
// use underscore (_) at the beginning to make keys hidden, for example $prefix = ‘_rw_’;
// you also can make prefix empty to disable it
$prefix = ‘tm_’;
$meta_boxes = array();
// second meta box
$meta_boxes[] = array(
‘id’ => ‘additional’,
‘title’ => ‘Additional Information’,
‘pages’ => array(‘post’, ‘film’, ‘album’),
‘fields’ => array(
array(
‘name’ => ‘Your thoughts about Deluxe Blog Tips’,
‘id’ => $prefix . ‘thoughts’,
‘type’ => ‘wysiwyg’, // WYSIWYG editor
‘std’ => ‘<b>It\’s great!</b>’,
‘desc’ => ‘Do you think so?’
),
array(
‘name’ => ‘Upload your source code’,
‘desc’ => ‘Any modified code, or extending code’,
‘id’ => $prefix . ‘code’,
‘type’ => ‘file’ // file upload
),
array(
‘name’ => ‘Screenshots’,
‘desc’ => ‘Screenshots of problems, warnings, etc.’,
‘id’ => $prefix . ‘screenshot’,
‘type’ => ‘image’ // image upload
)
)
);
which is found in your own file: wp-team-manager.php
You may find the exact strings in the screen capture I’ve sent before.
Can you please let me know what is that for and why does this appear in my post editor?
Thank you.