Open slide links in a new window?

Free Joomla module to create slideshow on your website which includes different data like part of articles or text defined by user.
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Mon Apr 22, 2013 9:13 am
Does any of you know if it is possible to open the links of the Image Show slides in a new window/new tab?
User avatar
Fresh Boarder

Konrad M
Mon Apr 22, 2013 9:36 am
Hi,
which style are you using ?
User avatar

GK User
Mon Apr 22, 2013 11:03 am
Konrad M wrote:Hi,
which style are you using ?


Hello, thanks for your reply.

I am using gk_boutique.
User avatar
Fresh Boarder

Konrad M
Mon Apr 22, 2013 11:38 am
Please go to modules/mod_image_show_gk4/styles/gk_boutique/view.php and find:
Code: Select all
<div class="gkIsSlide" style="z-index: <?php echo $i+1; ?>;" title="<?php echo $title; ?>"><?php echo $path; ?><a href="<?php echo $link; ?>">link</a></div>

and change it to:
Code: Select all
<div class="gkIsSlide" style="z-index: <?php echo $i+1; ?>;" title="<?php echo $title; ?>" target="_blank"><?php echo $path; ?><a href="<?php echo $link; ?>">link</a></div>

Then in same file find:
Code: Select all
<div class="gkIsTextItem">
            <a href="<?php echo $link; ?>" title="<?php echo $title; ?>"><?php echo $text; ?></a>
         </div>

and change to:
Code: Select all
<div class="gkIsTextItem">
            <a href="<?php echo $link; ?>" title="<?php echo $title; ?>" target="_blank"><?php echo $text; ?></a>
         </div>
User avatar

GK User
Mon Apr 22, 2013 12:22 pm
Thanks for your reply! It works.

My question now, though: Is it possible to make some links open in a new window, while some open in the same window?
User avatar
Fresh Boarder

Konrad M
Mon Apr 22, 2013 12:24 pm
Without some hard coding it is not possible unfortunetly. You may have all open in new window or all open in same.
User avatar

GK User
Mon Apr 22, 2013 12:39 pm
Ok, I understand. Thanks for your help and your quick response! :)
User avatar
Fresh Boarder


cron