only load header on index only load header on index
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

only load header on index

Started by jmyers1643, March 06, 2007, 02:44:38 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

jmyers1643

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.

Nibbler

Make it as a custom header, put the flash into a php file and wrap it inside a conditional based on $_GET['cat'].

jmyers1643

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

Nibbler

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