Support

Account

Home Forums Backend Issues (wp-admin) Taxonomy field: terms not displayed in "All post" list (in backend)

Solving

Taxonomy field: terms not displayed in "All post" list (in backend)

  • As the title: the taxonomy terms are correctly saved and all works, but they’re not displayed in the respective column from the All Posts list in the backend. It seems that ACF save the terms in other places

  • I’d like to use Taxonomy field in place of the default wordpress meta box, but at the same time I’d like that the Taxonomy field could be integrated with the WP backend. Is it possible?

    Plaese, let me know, it’s urgent for a client project.

  • Solved enabling options Save/Load terms and hiding metabox with:

    function hide_metabox_tax() {
    	remove_meta_box( 'taxonomynamediv' , 'cpt' , 'normal' );
    }
    add_action( 'admin_menu' , 'hide_metabox_tax' );
  • Hi @donad

    So have you set the taxonomy to display as a column on the “all cpt” list?
    Are the terms created and exists properly otherwise when you check the taxonomys admin panel?

  • @jonathan yes, it seems so. Waiting for official confirmation

  • Alright, let me know! 🙂

Viewing 7 posts - 1 through 7 (of 7 total)

The topic ‘Taxonomy field: terms not displayed in "All post" list (in backend)’ is closed to new replies.