Hi!
Nice plugin. I’m having some trouble with category modification. If I modify category or create new categories it appears:
Notice: Undefined index: wptm_sidebar-discovery-alps in /home/…../wp-content/plugins/custom-taxonomy-category-and-term-fields/wp-category-meta.php on line 526
Notice: Undefined index: wptm_banner-discovery-alps in /home……./wp-content/plugins/custom-taxonomy-category-and-term-fields/wp-category-meta.php on line 526
Notice: Undefined index: wptm_text-banner-discovery-alps in /hom…./wp-content/plugins/custom-taxonomy-category-and-term-fields/wp-category-meta.php on line 526
Warning: Cannot modify header information – headers already sent by (output started at /…./www/wp-content/plugins/custom-taxonomy-category-and-term-fields/wp-category-meta.php:526) in /home/discoverdp/www/wp-includes/pluggable.php on line 1228
Can you help me?
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>Thanks a lot for this plugin. It works great, but there is a little bug for me when I use a WYSIWYG field in a custom taxonomy. All the linefeeds and paragraphs are ignored on the archive page.
I tried other format options like bold, list or link and they are all printed as expected.
This is how I call the custom field in template file:
if ( function_exists( 'get_all_terms_meta' ) ) :
$magMeta = get_terms_meta($category_id, 'inhaltsangabe');
$inhalt = $magMeta[0];
if ( ! empty( $inhalt ) ) :
printf( '<div class="mag-inhalt">%s</div>', $inhalt );
endif;
endif;
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>Hi a simple question i need to add Custom Fields in the woocommerce category and your template works, but the normal template tag not work you have any idea?
Tnx in advance
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>I tried update_terms_meta() but it didn’t work.. how do i set the meta in theme files like update_post_meta()
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>Hi, I have set the custom taxonomy meta. I want to show the meta values, how can I show ?
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>The Plugin is Awesome but the problem is all of the ajax working is broken.
Quick Edit is not working any more, also when i delete or create a category it refresh the whole page.
Please fix this, bcoz i need to work with lots of categories, terms and tags on daily basis.
Thanks
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>Codestyling Localization wp plugin says the following:
Compatibility: Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won’t be executed anymore. Please contact the Author about that.
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>Hi
I am trying to add additional content on category pages and have added this code in my category.php but nothing shows
<?php if (function_exists('get_terms_meta')) { ?>
<?php $metaValue = get_terms_meta(addthis); ?>
<?php
} ?>
<?php echo $metaValue; ?>
can you please guide if i have to add something else in functions file ir somewhere else
please help! Thanks
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>Hi, I love your plugin, but I have a trouble with running that.
My settings of your plugin are:
Meta Names: custom1
Meta Type: text
Meta Taxonomy: category
And code on page:
`<?php
$category_id = $category->cat_ID;
$metaValue = get_terms_meta($category_id, custom1);
echo $metaValue; ?>
For page with existing “custom1” value it says: “Array”,
for pages without value it says nothing.
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>How I can add image field in theme ???
<?php
if (function_exists('get_terms_meta')) {
$metaValue = get_terms_meta($category_id, 'catimage');
}
foreach ( $categories as $category ) {
$id = $category->term_id;
echo '
<div class="products-block '.$category->term_id.'">
<div class="img-cat">
<a href="' . get_category_link( $category->term_id ) . '">' .$metaValue.'</a>
</div>
<a href="' . get_category_link( $category->term_id ) . '">' . $category->name . '</a>
</div>';
}
?>
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>I have been trying to get a text value from a meta box called ‘header’ I have setup in a custom taxonomy called ‘shows’, to show up inside of a custom post template. I have placed this code in the custom post template but it does not display the value.
<?php if (function_exists(‘get_terms_meta’))
{
$metaValue = get_terms_meta($category_id, ‘header’);
}
echo $metaValue; ?>
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>1. Added a Meta key, named ‘catsource’ by selecting ‘category’ as Meta taxonomy, it is showing in meta list.
2. Added following code in category.php to display this meta key data in category page:
<?php if (function_exists('get_terms_meta')) { ?>
<?php $metaValue = get_terms_meta($category_id, $catsource); ?>
<?php } ?>
<?php echo $metaValue; ?>
But not showing at front-end in category page. Any clue?
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>This is a mistake, as the html Code appears in the WYSIWYG Field of the editor.
https://www.ads-software.com/plugins/custom-taxonomy-category-and-term-fields/
]]>