EasyImageCaption – Joomla! 1.5 Plugin

Review

If you use EasyImageCaption, please post a rating and a review at the Joomla! Extensions Directory.

Discussion

For bugs or feature requests, please drop me an e-mail or use this thread in the Joomla! forums.

Demo

You can see what it looks like on this page (frontend only).

Installation

Download the ZIP file and use it with Joomla's extension installer. Then activate the plugin on the plugin page. That's it.

If you want to update EasyImageCaption, you have to uninstall the old version first and then install the newer one. Note that your parameter settings will get lost upon uninstalling.

Parameter settings

EasyImageCaption provides a lot of parameters:

Plugin Parameters

Formatting tag in caption HTML output
[url]www.example.com[/url] <a href='http://www.example.com'>www.example.com</a>
www.example.com
[url=www.example.com]Click here[/url] <a href='http://www.example.com'>Click here</a>
Click here
[b]Bold example[/b] <b>Bold example<b>
Bold example
[i]Italic example[/i] <i>Italic example<i>
Italic example
[u]Underlined example[/u] <u>Underlined example<u>
Underlined example
First paragraph[br]Next paragraph First paragraph<br />Next paragraph
First paragraph
Next paragraph

Compatibility with other caption solutions

Caption styling

Compatibility: JoomGallery's JoomPlu plugin

Compatibility advice

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); ?>
Send mail to author · Legal / Impressum