tep
Hi,
There seems to be additional closing tag there, you can open the file:
[root]/modules/mod_image_show_gk4/styles/gk_shop_and_buy/view.php
At approx line 86:
<?php if($this->config['config']->gk_shop_and_buy->gk_shop_and_buy_show_content_block) : ?>
<div class="figcaption">
<?php if($this->config['config']->gk_shop_and_buy->gk_shop_and_buy_show_title_block) : ?>
<h3><a href="<?php echo $link; ?>">><?php echo substr($title, 0, $this->config['config']->gk_shop_and_buy->gk_shop_and_buy_title_block_length); ?></a></h3>
<?php endif; ?>
<?php if($this->config['config']->gk_shop_and_buy->gk_shop_and_buy_show_text_block) : ?>
<p><a href="<?php echo $link; ?>">><?php echo substr($text, 0, $this->config['config']->gk_shop_and_buy->gk_shop_and_buy_text_block_length); ?></a></p>
<?php endif; ?>
</div>
<?php endif; ?>
change it to:
<?php if($this->config['config']->gk_shop_and_buy->gk_shop_and_buy_show_content_block) : ?>
<div class="figcaption">
<?php if($this->config['config']->gk_shop_and_buy->gk_shop_and_buy_show_title_block) : ?>
<h3><a href="<?php echo $link; ?>"><?php echo substr($title, 0, $this->config['config']->gk_shop_and_buy->gk_shop_and_buy_title_block_length); ?></a></h3>
<?php endif; ?>
<?php if($this->config['config']->gk_shop_and_buy->gk_shop_and_buy_show_text_block) : ?>
<p><a href="<?php echo $link; ?>"><?php echo substr($text, 0, $this->config['config']->gk_shop_and_buy->gk_shop_and_buy_text_block_length); ?></a></p>
<?php endif; ?>
</div>
<?php endif; ?>