Hi,
I'd like to know how to be able to open any "Slides" that are categorized as "Text" (using the selected URL) in a new window instead of current. I am using the gk_shop_and_buy style.
Please advice.
Regards,
Paul
<div <?php echo 'class="figcaption '. $this->config['config']->gk_shop_and_buy->gk_shop_and_buy_title_block_position . $additional_class .'"'; ?>>
<?php if($this->config['config']->gk_shop_and_buy->gk_shop_and_buy_show_title_block) : ?>
<h3><a href="<?php echo $link; ?>"><?php echo JString::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 JString::substr($text, 0, $this->config['config']->gk_shop_and_buy->gk_shop_and_buy_text_block_length); ?></a></p>
<?php endif; ?>
</div>
<div <?php echo 'class="figcaption '. $this->config['config']->gk_shop_and_buy->gk_shop_and_buy_title_block_position . $additional_class .'"'; ?>>
<?php if($this->config['config']->gk_shop_and_buy->gk_shop_and_buy_show_title_block) : ?>
<h3><a target="_blank" href="<?php echo $link; ?>"><?php echo JString::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 target="_blank" href="<?php echo $link; ?>"><?php echo JString::substr($text, 0, $this->config['config']->gk_shop_and_buy->gk_shop_and_buy_text_block_length); ?></a></p>
<?php endif; ?>
</div>