Hi there. I was trying to disable the links on the module image show, but it's not working. How can I accomplish this?
Thanks in advance.
dziudek wrote:Hi,
You said about the links after clicking on the slide image or about links in the slide titles? Because option "Slide links" is connected with clicking on the slide image. The links in the slide titles cannot be disabled in the module style options.
<div class="gkIsTextItem">
<span><?php echo $date; ?></span><a href="<?php echo $link; ?>"><?php echo $title; ?></a>
</div>
<div class="gkIsTextItem">
<span><?php echo $date; ?></span><?php echo $title; ?>
</div>
dziudek wrote:The only way to disable links in the slide titles is changing in file modules/mod_image_show_gk4/styles/gk_financial_business/view.php fragment:
- Code: Select all
<div class="gkIsTextItem">
<span><?php echo $date; ?></span><a href="<?php echo $link; ?>"><?php echo $title; ?></a>
</div>
to:
- Code: Select all
<div class="gkIsTextItem">
<span><?php echo $date; ?></span><?php echo $title; ?>
</div>
dziudek wrote:Sorry but change of the hover event is beyond of our support, because it needs deep changes in the core module code.