IF you want to make the keyword of other fields just follow this steps.
administrator/components/com_tagmeta/views/itemtagmeta/tmpl/form.php
Line 215 for keyword length:
<input class="text_area" type="text" name="keywords" id="keywords" size="70" maxlength="255" value="<?php echo $this->itemtagmeta->keywords; ?>" />
to
<input class="text_area" style="width:500px; height:50px;" rows="3" cols="50" type="text" name="keywords" id="keywords" size="70" maxlength="255" value="<?php echo $this->itemtagmeta->keywords; ?>" />
edit the italic value according to your need
just simple html hack.
if you need more enhancement
this code can count the character
SEO best rules
title: 65 char
description: 165
keyword: ~ (no more counted for seo)
Php code:
$string="$this";
$num_char=strlen($string);
<?php echo $num_char;?>;
Now. someone pls tell me the complete codes , i m not versed in php well.