Home › Forums › Pro Support › Many tags terms freezes WPshowpost edit list screen › Reply To: Many tags terms freezes WPshowpost edit list screen
January 29, 2018 at 10:18 pm
#3469
Keymaster
Wow, that’s a lot of tags. I’ll have to look into lazy-loading them.
You could try this function to remove the control completely:
add_action( 'butterbean_register', 'tu_wpsp_remove_terms', 101, 2 );
function tu_wpsp_remove_terms( $butterbean, $post_type ) {
$manager = $butterbean->get_manager( 'wp_show_posts' );
$manager->unregister_control( 'wpsp_tax_term' );
}
Let me know if it works or not 🙂