EasyImageCaption works out-of-the-box. Just download the correct ZIP file according to your Joomla version and use it with the extension installer in your Joomla back-end. Then head over to the plugin page and activate it. That's it.
If you are using EasyImageCaption and there are also images with standard Joomla! captions on your site, you have to remove the link to the 'caption.js' script file to deactivate Joomla!'s javascript caption solution.
To do this, add the following PHP code to the top of your template's 'index.php' file:
<?php //Remove 'caption.js' $header_data = $this->getHeadData(); reset($header_data['scripts']); foreach($header_data['scripts'] as $key=>$value) { if(strpos($key, 'caption.js')) { unset($header_data['scripts'][$key]); } } $this->setHeadData($header_data); ?>
0.51
You can see the plugin working on this live page (Joomla 1.5 version, frontend only).
If you use EasyImageCaption, please post a rating and a review at the Joomla Extensions Directory.
For bugs or feature requests, please drop me an e-mail or use this thread in the Joomla forums.