Actually you can, but remember that if you update the module, your change will be overwritten.
You need to edit this file:
modules/mod_image_show_gk4/styles/gk_rockwall/view.php
and to that block of code:
- Code: Select all
<figcaption<?php echo ' style="width: '.$this->config['config']->gk_rockwall->gk_rockwall_title_block_width.'%; padding: '.$this->config['config']->gk_rockwall->gk_rockwall_title_block_padding.'; background: '.$this->config['config']->gk_rockwall->gk_rockwall_title_block_bg.'; color: '.$this->config['config']->gk_rockwall->gk_rockwall_title_block_color.';"'; ?>>
<h2><?php echo $title; ?></h2>
<a href="<?php echo $link; ?>" class="button"><?php echo JText::_('MOD_IMAGE_SHOW_ROCKWALL_READMORE'); ?></a>
</figcaption>
add display of content, for example as a paragraph:
- Code: Select all
<figcaption<?php echo ' style="width: '.$this->config['config']->gk_rockwall->gk_rockwall_title_block_width.'%; padding: '.$this->config['config']->gk_rockwall->gk_rockwall_title_block_padding.'; background: '.$this->config['config']->gk_rockwall->gk_rockwall_title_block_bg.'; color: '.$this->config['config']->gk_rockwall->gk_rockwall_title_block_color.';"'; ?>>
<h2><?php echo $title; ?></h2>
<p><?php echo $content; ?></p>
<a href="<?php echo $link; ?>" class="button"><?php echo JText::_('MOD_IMAGE_SHOW_ROCKWALL_READMORE'); ?></a>
</figcaption>
Anything beyond is up to you (styling, fixing if the content doesn't fit well).