Support

Search results for ""

Sorry, no results found. Perhaps you would like to search the documentation?
All Topics
Markus Millendorfer

disable admin columns for media library

Hi, i’m using Folders PRo Plugin for media library – plus some meta boxes for media files.
Admin Columns leads to some unexpected issues and I would be happy if AC can be disabled for media library at all. I was not able to do this, tried some hooks, but still have ac changes in the media views.
Is there a way how it can be disabled for any media lib view?

thx Markus

1 week ago
Stefan van den Dungen Gronovius
Developer

Thanks for your feedback.
Yes, there is a hook that can be used to disable our plugin completely for a specific list table or screen.
https://github.com/codepress/admin-columns-hooks/blob/master/ac-list_screen-is_active.php

The following snippet should work for your use case:

add_filter('ac/list_screen/is_active', function ($active, WP_Screen $screen): bool {
    if ('upload' === $screen->base) {
        return false;
    }

    return $active;
}, 10, 2);

​Feel free to let me know if you have any more questions.

6 days, 2 hours ago

You must be logged in to reply to this topic.