We're merging with GenerateBlocks! Learn more here.

[Resolved] Many tags terms freezes WPshowpost edit list screen

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Many tags terms freezes WPshowpost edit list screen

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #3460
    Daniel
    Participant

    Hi!

    I manage a website with almost 2000 different tags. When I try to edit a list in Wp Show Posts admin screen it tries to display all the available tags to choose from so this screen gets frozen after a while and I cannot edit it.

    Is something I can do to edit the WPshowposts lists without loading the tags?

    #3469
    Tom
    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 🙂

    #3484
    Daniel
    Participant

    Thanks Tom!

    I tried the function but it doesn’t work. The edit list screen is still loading the tags and freezing.

    #3501
    Tom
    Keymaster

    Strange – I just tried it and it seems to work. How are you adding it?

    #3544
    Daniel
    Participant

    I’m using the code snippets plugin to add and activate it.

    #3555
    Tom
    Keymaster

    I just released 1.1.2 which should fix this loading issue.

    Let me know 🙂

    #3578
    Daniel
    Participant

    I’ve installed the latest release and the problem is fixed.

    Thanks Tom! 🙂

    #3586
    Tom
    Keymaster

    Awesome! Thanks for confirming 🙂

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.