Open the "external latest images" in New Window

Hi, i have added external "latest images" code:

The file is placed on: "www.mysite.com.ar/modules/zenphotomodule/module.php"

[code]<?php
define('ZENFOLDER', 'zp-core');
define('WEBPATH', 'http://www.mysite.com.ar/folder');
require_once("../../folder/zp-core/template-functions.php");
header ('Content-Type: text/html; charset=' . getOption('charset'));
?>
<?php
printLatestImages(4);
?>[/code]

The problem is that i made a Iframe to integrate it in to my website homepage: http://www.riveresmundial.com.ar ... But now, when you click, it opens the gallery inside the module...

how can i tell the script to open the image links in new window or something like that so it opens in the hole window????

Bye :D

Comments

  • acrylian Administrator, Developer
    Well, iFrames and Frames are considered sort of "bad style" and "outdated technique", so why do you want to use them? So there is no option for that. What is wrong with opening the images within your website?

    But if you really want to do that, you would have to copy, rename and modify that function itself which you find it in the file `zp-core/template-functions.php`and place it within your file as a "custom function".
Sign In or Register to comment.