Hello. Would be glad if someone could help me out on the following.
I use a conditional php include to get certain footers for certain sites:
<?php
if (is_page('kontakt')) {
include (TEMPLATEPATH . '/footerkontakt.php');
}
elseif (is_page('produkte')) {
include (TEMPLATEPATH . '/footerprodukte.php');
}
elseif (is_page('Special Offer')) {
include (TEMPLATEPATH . '/footeroffer.php');
}
elseif (is_page('Tipps & Trends')) {
include (TEMPLATEPATH . '/footertipps.php');
}
elseif (is_page('Philosophie')) {
include (TEMPLATEPATH . '/footerphilosophie.php');
}
else{
get_footer();
}
?>
It's working fine in all browsers except ie6. Why might that be???
Cheers!!