Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #554657

    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!

    #554673

    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

    #554802

    Posting to private…

    • This reply was modified 8 years, 11 months ago by caretecher.
    #557151

    Hi,

    Any luck?

    Thanks!

    #557410

    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

    #668459

    Thanks, solved.

    #668495

    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

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Remove Custom Taxonomy Category from Meta’ is closed to new replies.