Hi,
I have registered a custom taxonomy on my regular posts. It has categories within it. Once assigned, the category is appearing appearing alongside the regular post categories in the meta below the title.
How do I suppress the custom categories from appearing. The custom taxonomy is called articletype.
Thanks!
Hi caretecher!
can we please have access to your web site so we can give it a look?
Post to us wordpress / password through private data.
Regards,
Basilis
Posting to private…
Hi,
Any luck?
Thanks!
Hi!
Thank you for the info. Please add this in the functions.php file in order to exclude the taxonomy:
// exclude taxonomies
add_filter('avf_exclude_taxonomies', function($excluded_taxonomies) {
$tax = array('taxonomyhere', 'anothertaxonomy');
$excluded_taxonomies = array_merge( $tax, $excluded_taxonomies );
return $excluded_taxonomies;
});
Include the name of the taxonomy inside the $tax array.
Regards,
Ismael
Thanks, solved.
Hi,
Glad we could help! To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)
Best regards,
Vinay