Hi Patrick
Thanks for the info. As I see it the site doesn't need all the bells & whisles that SH404SEF offers, just "boring" metadata at the K2 category level, as it seems that by default you can't set this.
I had searched the K2 forums, but not that well it seems, as I found this post today that resolves the issue - as least from what I can see.
community.getk2.org/forum/topics/categor...4%3AComment%3A165537
The resolution is as follows -
----DB CHANGE/UPDATE--------------add
ALTER TABLE `jos_k2_categories` ADD `metadesc` text NOT NULL
ALTER TABLE `jos_k2_categories` ADD `metakey` text NOT NULL
-----administrator/components/com_k2/tables---------
var $metadata = null;
var $metadesc = null;
var $metakey = null;
------components/com_k2/templates/default/category.php----------add
// no direct access
defined('_JEXEC') or die('Restricted access');
/* Add AtLeast AutoMetadata - Hack */
$mainframe->prependMetaTag( "keywords", substr(strip_tags($this->category->metakey ), 0, 255) );
$mainframe->prependMetaTag( "description", substr(strip_tags($this->category->metadesc ), 0, 255) );
---------administrator/components/com_k2/views/category/tmpl/default.php-----------add
<table class="admintable">
<tr>
<td align="right" class="key"><?php echo JText::_('Description'); ?></td>
<td><textarea rows="5" name="metadesc" cols="30"><?php echo $this->row->metadesc; ?></textarea></td>
</tr>
<tr>
<td align="right" class="key"><?php echo JText::_('Keywords'); ?></td>
<td><textarea rows="5" name="metakey" cols="30"><?php echo $this->row->metakey; ?></textarea></td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
-----------------------
Thanks to erme & Lukas over at the K2 forums. It would be nice if the folks at K2 incorporated this into the next release