Hi coopoli,
The plugin is not supported for k2 component yet, you can try as following that might get it working in a k2 content item.
Open the file of pluginscontentplg_jathumbnail.php looking for this code
[PHP]
if ($view == ‘article’) {
$this->_crop = $this->pluginParams->get(‘content_mode-auto-manual-crop_image’, 1);
$this->article($article, $params, $limitstart);
}
[/PHP]
change it to
[PHP] if ($view == ‘article’ || $view == ‘item’) {
$this->_crop = $this->pluginParams->get(‘content_mode-auto-manual-crop_image’, 1);
$this->article($article, $params, $limitstart);
}[/PHP]
That’s for joomla 1.5, hope this should help !