Saturday, July 7, 2018
open the links of the carousel in a new page opencart
open the links of the carousel in a new page opencart
Replace in catalog/view/theme/*/template/module/carousel.tpl
<a href="<?php echo $banner[link]; ?>">
with
<a href="<?php echo $banner[link]; ?>" target="_BLANK">
Sample Vqmod
<modification>
<name>carousel in a new page</name>
<version>1.0</version>
<vqmver>2.x</vqmver>
<author>BNIT.it</author>
<link>http://www.bnit.it/</link>
<file path="catalog/view/theme/*/template/module/carousel.tpl">
<operation>
<search position="replace"><![CDATA[<a href="<?php echo $banner[link]; ?>">]]></search>
<add><![CDATA[<a href="<?php echo $banner[link]; ?>" target="_BLANK">]]></add>
</operation>
</file>
</modification>