hi,
One thing I was thinking I could do but I’m not sure how is to some how put a bit of php code to see if the url has this in it “?i=WHATEVER” and if it has the “?i=WHATEVER” part in it then I would hide the slide show in the header on my website pages.
How could I do that please?
Here is the home page without the query in the url so on this page I would like the slide show to display like it is now.
In this page I would like the slide show to be invisable.
So a rough bit of code I’m going to start with is like this:
<?php
$getvar = "i"; ( I gather this is wrong)
$_GET["getvar"];
<?php if ($getvar( IS PRESENT OR SHOWING OR SOMETHING LIKE THIS???) { ?>
<!-- then I DON't show the Slide Show-->
<?php } else;?>
<!-- then I show the Slide Show-->
<?php dynamic_content_gallery(); ?>
<?php endif;?>