replaced the admin_init() function in WPCustomCategoryImage.php in plugin’s directory with following and it worked for me. now its showing all images form other categories rather then only form uncategorized categories in posts
` public function admin_init()
{
$this->taxonomies = get_taxonomies();
add_filter(‘manage_edit-category_columns’, array($this, ‘manage_category_columns’));
add_filter(‘manage_category_custom_column’, array($this, ‘manage_category_columns_fields’), 10, 3);
foreach ((array) $this->taxonomies as $taxonomy) {
$this->add_custom_column_fields($taxonomy);
}
// call this here to get custom taxonomies
$this->taxonomies = get_taxonomies();
if( ! is_array( $this->taxonomies) ) return;
foreach( $this->taxonomies as $taxonomy )
{
add_action( $taxonomy . ‘_add_form_fields’ , array($this,’add_taxonomy_field’) );
add_action( $taxonomy . ‘_edit_form_fields’ , array($this,’edit_taxonomy_field’) );
}
}