is there a way to only show a header on the index page, i have a decent size flash header and do not want it loading on the entire site.
Make it as a custom header, put the flash into a php file and wrap it inside a conditional based on $_GET['cat'].
Quote from: Nibbler on March 06, 2007, 04:01:31 PM
Make it as a custom header, put the flash into a php file and wrap it inside a conditional based on $_GET['cat'].
thanks for the suggestion, however that solution exceeds my skills.. :P
Save this as header.php in your Coppermine directory
<?php
if ($_SERVER['PHP_SELF'] == 'index.php' && empty($_GET['cat'])){
?>
Your header here
<?php
}
Adding in your flash header as indicated. Then go into config and set 'Themes settings -> Path to custom header include' to header.php