• Resolved jonandrewgreig

    (@jonandrewgreig)


    Hi there,

    I don’t know if it’s a bug or a design afterthought, but I have a bunch of custom taxonomy fields I’m adding to a custom taxonomy with the “Ultimate Taxonomy Master” plugin, and they all show up as extra columns in the custom taxonomy table listing.

    Is there any way to eliminate extra columns in the custom taxonomy listing in the backend? or to have it stop associating added custom taxonomy fields, if anything. It’d be convenient, if anything. Anyway, appreciate the help! Cheers.

Viewing 2 replies - 1 through 2 (of 2 total)
  • I just had this same problem.

    in ultimate-taxonomy-manager/ct.class.php

    comment out this line:

    add_filter( 'manage_edit-'.$this->ct_type.'_columns', array($this,'taxonomy_columns'));

    by changing it to this

    //add_filter( 'manage_edit-'.$this->ct_type.'_columns', array($this,'taxonomy_columns'));

    Thread Starter jonandrewgreig

    (@jonandrewgreig)

    Ah! More elegant solution, thanks! I ended up putting a “display: none;” CSS rule on the specific columns I wanted hidden; nothing sophisticated, but compensated. This is good to keep in mind for the future.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Too Many Columns on Custom Taxonomy Screen’ is closed to new replies.