I updated wordpress to the newest version and now get this error message.
Fatal error: Cannot redeclare add_term_meta() (previously declared in /home/waterfrontsea/public_html/wp-includes/taxonomy.php:1757) in /home/waterfrontsea/public_html/wp-content/plugins/taxonomy-metadata/taxonomy-metadata.php on line 97
I tried going onto FTP and deleting taxonomy and didnt work got another error message aswell as this.
]]>Hey there! Im getting this error:
Cannot redeclare add_term_meta() (previously declared in /home4/bigupgra/public_html/hubik/wp-includes/taxonomy.php:1577) in /home4/bigupgra/public_html/hubik/wp-content/plugins/taxonomy-metadata1old/taxonomy-metadata.php on line 97
Thanks in advance!
]]>Latest Update of WOrdpress Broke the Plugin …
]]>Updating to the latest WordPress broke my site and gave me a 500 error.
“PHP Fatal error: Cannot redeclare add_term_meta() (previously declared in /…/wp-includes/taxonomy.php:1571) in /…/wp-content/plugins/taxonomy-metadata/taxonomy-metadata.php on line 97”
I see that the plugin hasn’t been updated in over three months, but WordPress 4.4 has already been released. This will likely result in a fatal error being served on any sites using this plugin.
Mitcho, I think you should at least clear the plugin file so that it does nothing rather than serving an error like this.
If anyone is experiencing problems, just deactivate the plugin. Your existing data will be lost, but the functionality of the plugin should continue since this functionality is now baked into WordPress core. If you can’t reach your admin panel, then just delete the plugin files from the server.
]]>Would this plugin allow one to automatically add a metadata field to all terms in a specified taxonomy, or is it on a per-term basis?
If it’s per-term can I place it in a for-each function that grabs all terms in taxonomy “x”?
What I need is an image field for every term in taxonomy “x” and it’s just out of my skill level to understand if this is possible.
]]>Hi, from WordPress 4.4 it seems that the add_term_meta, update_term_meta, get_term_meta and delete_term_meta are added as functions in the core.
Example:
Fatal error: Cannot redeclare delete_term_meta() in /htdocs/kleo/wp-content/plugins/taxonomy-metadata/taxonomy-metadata.php on line 113
Figured it out. It was tied to trying to get a specific banner image to show up on a page based on taxonomy terms assigned to it.
Yep, feeling like an idiot. But there ya go!
]]>Hi,
I try to deactivate the plugin but nothing happens. On the dashboard appears the message: “Plugin deactivated.” but it remains active.
Can you help me understand how to deactivate it?
thank you
]]>Is there an updated version of this plugin? Free? Or for sale?
]]>In order to get the plugin working on my local installation, I had to make an ugly $wpdb hack in my functions.php (essentially duplicating what is in the Taxonomy_Metadata
constructor:
if (!isset($wpdb->taxonomymeta)) {
$wpdb->taxonomymeta = $wpdb->prefix . 'taxonomymeta';
}
Since I haven’t seen anyone else having problems with this, I suspect it is something specific to my installation.
Any ideas?
]]>Taxonomy Metadata Plugin conflict with Piklist. I pasted the errors below maybe it helps finding a solution faster.
———————————————-
Fatal error: Cannot redeclare add_term_meta()
(previously declared in ..\plugins\piklist\includes\class-piklist-taxonomy.php:289)
in ..\plugins\taxonomy-metadata\taxonomy-metadata.php on line 97
———————————–
Fatal error: Cannot redeclare delete_term_meta()
(previously declared in ..\plugins\piklist\includes\class-piklist-taxonomy.php:309)
in ..\plugins\taxonomy-metadata\taxonomy-metadata.php on line 114
————————————-
Fatal error: Cannot redeclare get_term_meta() (previously declared in ..\plugins\piklist\includes\class-piklist-taxonomy.php:325)
in ..\plugins\taxonomy-metadata\taxonomy-metadata.php on line 129
————————————-
Cannot redeclare update_term_meta() (previously declared in ..\plugins\piklist\includes\class-piklist-taxonomy.php:347)
in ..\plugins\taxonomy-metadata\taxonomy-metadata.php on line 149
————————————–
Piklist checks to make another plugin doesn’t contain these functions, which is the proper way. The Taxonomy Metadata Plugin does not, that’s why there are errors.
]]>Post meta information is automatically cached in memory for a standard WP_Query. Does this plugin works the same (e.g. caching meta query results in object cache?)
]]>I got this error message when I tried to activate the plugin…
<strong>Plugin could not be activated because it triggered a fatal error.</strong>
Fatal error: Cannot redeclare class Taxonomy_Metadata in /home1/abcxyz/public_html/wp-content/plugins/taxonomy-metadata/taxonomy-metadata.php on line 10
]]>
Hello,
using the Taxonomy Metadata plugin (https://www.ads-software.com/plugins/taxonomy-metadata/) I have set up inputs for my custom taxonomies’ terms and can save the information associated with those inputs.
But now I am trying to set up a select drop-down list with a Yes or No choice but cannot save the selection made.
Here is my select drop-down list code:
<tr class="form-field">
<th scope="row" valign="top"><label for="setIndividual"><?php _e('Are the books sold individually?'); ?></label></th>
<td>
<select name="setIndividual" id="setIndividual">
<option value="No" <?php selected( $setIndividual, 'No' ); ?> >No</option>
<option value="Yes" <?php selected( $setIndividual, 'Yes' ); ?> >Yes</option>
</select>
<p class="description"><?php _e('No is the default value'); ?></p>
</td>
</tr>
And here is the code I use to save the data associated with the corresponding variables ($setNumber and $setIndividual in that example) but it doesn’t save the value of the selected drop-drown list option:
function save_taxonomy_metadata( $term_id ) {
if ( isset($_POST['setNumber']) )
update_term_meta( $term_id, 'setNumber', esc_attr($_POST['setNumber']) );
if ( isset($_POST['setIndividual']) )
update_term_meta( $term_id, 'setIndividual', esc_attr($_POST['SetIndividual']) );
}
When with inputs, like with $setNumber, the data is saved though. Here is the code for an input:
<tr class="form-field">
<th scope="row" valign="top">
<label for="setNumber"><?php _e('How many items in the set?'); ?></label>
</th>
<td>
<input name="setNumber" id="setNumber" type="text" value="<?php echo get_term_meta($tag->term_id, 'setNumber', true); ?>" />
<p class="description"><?php _e('For example: Numbers 1 to 10 or The three volumes'); ?></p>
</td>
</tr>
What matters in this piece of code, I suppose, is the following:
get_term_meta($tag->term_id, 'setNumber', true);
And I try to get something similar with my select drop-down list.
Thank you
]]>I finally put my code for taxonomy meta on github. Many of our clients have hosts that discourage or don’t allow modifying tables. This code implements the same API as your taxonomy-metadata plugin without new tables.
Admittedly, adding tables does perform faster when it is an option. So I think both methods have a lot of merit and should be kept around. I am trying now to decide the best alternative for adding my code to the www.ads-software.com repo and wanted to get your thoughts.
I think it would be neat if we could combine the two plugins and add tables if we can. Otherwise we can go the tableless route. We could also offer an option to go tableless to pick up the UI that comes with using cpts.
If I add this as a separate plugin I just make it more difficult for people to find the right solution. On the other hand that keeps both plugins light. And I can always mention in the readme that if you have the option to create tables and don’t need the UI, there is a faster plugin.
Thoughts?
]]>Hi,
I’m using this plugin and I like it, however, I’d love some things to be a little bit different.
First of all, database table uses field “taxonomy_id” for storing “term_id”, which is little bit confusing (it’s possible, the word “taxonomy” instead of “term” is used even at other parts of plugin). Of course, it is not good idea to change it (somebody may have used some $wpdb queries on the table – it would stop working) – some warning about this could be placed to the plugin description, to avoid confusion.
Second problem, I have encountered is metadata persistance even after associated term is removed. I guess add_filter('deleted_term_taxonomy', 'some_function');
with appropriate “some_function()” should solve the issue.
When using the plugin to rewrite some functions working with posts meta, I had to make more changes, because of lack of “get_post_custom()” function equivalent…
Last thing – it would be nice to have some custom field listing/editing in wp-admin term edit section ( wp-admin/edit-tags.php?action=edit&taxonomy=some_taxonomy&tag_ID=1234&post_type=post ).
Thank you for considering some of the enhancements. Even without them, this is great plugin… Thank you for that
]]>Hello,
I currently am trying to query the meta data of a taxonomy and use this data in my WP_Query. How would this be accomplished?
]]>Hello folks,
I can understand that to use this plugin,I have to oveeride methods like add_term_data(…) etc. but I need right direction to use this.
https://www.ads-software.com/extend/plugins/taxonomy-metadata/
]]>When I have this plugin network activated on a multisite network and create a new site, I get the following PHP warning:
PHP Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'new_blog' not found or invalid function name in .../wp-includes/plugin.php on line 406
The error comes from, line 15:
add_action('wpmu_new_blog', 'new_blog', 10, 6);
It should read instead:
add_action('wpmu_new_blog', array( $this, 'new_blog' ), 10, 6);
Thanks
https://www.ads-software.com/extend/plugins/taxonomy-metadata/
]]>I’ve found this plug-in very useful and will be using it as the basis of a custom metadata table that I need for a plug-in I’m working on.
I just wanted to suggest maybe caching the term meta?
Of course the metadata functions you use, already cache the term’s metadata – but they need to first need to generate the cache. As it stands each ‘new’ call to get_metadata
will require a query of the database to generate the cache of that term.
I wanted to suggest hooking into the hooks get_terms
(for when taxonomy terms are queried) and wp_get_object_term
(for when terms associated with some posts are queried). These both pass an array of terms – allowing you to call update_meta_cache
with an array of term IDs to generate the cache for all those terms at once.
So, when posts are queried – the metadata of all the associated terms will generated to cache in one query – and then inside the loop all calls to retrieve the metdata will be obtained from cache.
Pseudo code:
add_filter('get_terms','update_term_cache');
add_filter('wp_get_object_terms','update_term_cache');
function update_term_cache($terms){
$taxonomy ='mytaxonomy'; //Set taxonomy
$term_ids = wp_list_pluck($terms,'term_id');
update_meta_cache($taxonomy,$update_cache);
return terms;
}
If the term’s metadata is already in cache, then update_meta_cache
doesn’t do anything – so it’s not wasteful.
https://www.ads-software.com/extend/plugins/taxonomy-metadata/
]]>Hi,
there seems to be quite a difference in the code for this plugin as opposed to one I used earlier: Meta for Taxonomies. I’m wondering why. The other one hasn’t been updated for ages and yous seems active but I just want to make sure that I’m using the most stable code.
Any comments?
Thanks, Robert
https://www.ads-software.com/extend/plugins/taxonomy-metadata/
]]>Hi, i insered term meta value and i want to show them all with query, how should i do?
This is how i add them and i want to foreach or while them all
add_term_meta(‘1’, ‘lang’, ‘en’, true);
Thank you
https://www.ads-software.com/extend/plugins/taxonomy-metadata/
]]>Fatal error: Cannot redeclare inline_edit_term_row() (previously declared in /Users/everett/Sites/wordpress3/html/wp-content/plugins/custom-taxonomies/backwards_compatibility.php:77) in /path/to/wordpress3/html/wp-admin/includes/template.php on line 77
Gotta fix that.. maybe it’s only showing up in certain versions of WP, but even when I remove that file and comment out the include statement, you have unhandled PHP notices. If I had a nickel for every plugin I found that did not handle PHP notices correctly, I’d have a small fortune: the repo is FULL of them, and I won’t use any of them because it means your code has problems. You MUST turn on PHP notices when developing plugins.
Looks like you’re using a deprecated function call to wp_specialchars in 3 files:
Use esc_html() instead.
]]>