• I initially thought this was a Polylang bug but as @chouby has shown it turns out it’s this plugin.

    I quote:

    It’s a bug in WordPress Download Manager. A function hooked to a filter which doesn’t return anything and thus breaks all other functions hooke to the same filter.

    In download-manager/admin/menus/class.Categories.php, replace

        function categoryIDColumnData($c, $column_name, $term_id) {
    
            if ($column_name == 'tag_ID') {
                echo $term_id;
            }
        }

    by

        function categoryIDColumnData($c, $column_name, $term_id) {
    
            if ($column_name == 'tag_ID') {
                return $term_id;
            }
            return $c;
        }

    Note the return $c; line!

    See: https://www.ads-software.com/support/topic/incompatibility-with-download-manager-categories/

    Cheers, Jory

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Incompatibility with other plugins that add columns to categories’ is closed to new replies.