Taxonomy Meta plugin
-
Hello,
Does your plugin install parts of the Taxonomy Meta plugin?
This ads new elements in normal Posts editor and this is not very good.
-
Do you meant if the plugin is using wordpress default custom meta field ?
I mainly mean that your plugin is adding THIS BLOC to all my posts when editing!
And this is really annoying and it appears right below the edit box.
I googled the keywords found here and the results I got referred to a plugin named Taxonomy Meta, that’s why my question was about that.In any case, this is really annoying and you should do something about it.
Hi John,
Looks like some other plugin is adding that feature all of your post.
Team Manager plugin add block only on the team page.
Can you disable all plugin except team manger and see if its still there ?Thanks, but I simply tested to deactivate your plugin first and then it disappears form posts editor.
No need to deactivate all other plugins. If this shows only when your plugin is enabled it means that it comes from there, isn’t it?
Hi John,
If you look closely on the screenshoot you send
The panel showing there is not related to the team manager plugin.
So how it could be because of the team manager plugin?
The post editor is for team manger of page or post ?
Where its appearing ?Yes, I know.
As I said in the beginning, this appears in Post Editor only and it is called “Additional Information”. When I Googled those terms the result seemed to be associated with a plugin called “Taxonomy Meta”.
It shows right below the edit box.But it appeared only after installing Team Manager and it disappears after I deactivate Team Manager.
That’s why I was asking if this is related to Team Manager.
I found the strings of this in the postmeta table.
Is your plugin using this table?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.
Hi John,
I just fix the bug.
Some how i comment out that code on latest version.
Thanks for pointing that out
Please download the latest versionOK, thanks, that’s fine now.
The topic ‘Taxonomy Meta plugin’ is closed to new replies.