WP Category Meta plugin fix? [closed]

take a look at wordpress taxonomies extra fields the easy way

UPDATE:

to get the data on the front end you can use the functions that come with the class ex:

if (!function_exists('get_tax_meta'))
    require_once("path/to/Tax-meta-class/Tax-meta-class.php");

$saved_data = get_tax_meta($term_id,'field_id');
echo $saved_data;