Hi ! My gallery is in an Iframe and i tried to link directly to a picture details page.
ex:
http://fk13.ca/new/images/categories/in ... twg_show=xSo i integrated the iframe in "artistes.php" and use a php script to target my gallery into the iframe from external link like a dropdown menu in a seperate html file. It worked perfectly until i tried the "lytebox" feature. as soon as i click the picture no lightbox windows and my flash menu disapear.
ex:
http://fk13.ca/new/html/artistes.php?ta ... twg_show=xp.s. second problem.. i've disabled thumbnail page but when i link directly to a picture's page, it's still there...
You may have a better way to link directly into an iframe without php??
my php code:
<!--iframe start-->
<?php
if (!isset($_GET['target'])) {$target = "http://fk13.ca/new/images/categories/index.php"; }
else {$target = $_GET['target'];}
?>
<iframe src="<?php print $target; ?>" name="target" frameborder="0" height="1000" width="1000"> </iframe>
</center>
<!--iframe end-->
and the link:
<a href="http://fk13.ca/new/html/artistes.php?target=http://fk13.ca/new/images/categories/index.php?twg_album=Groupes+de+Musique&twg_show=x">Link</a>
Really need help on this one!