Call me stupid, but I ran into a problem...
What I want to do.. is add a footer A (like in the video) to every page...
that works fine, thx kier..
Now (and here is my problem) i want the footer to show on every page, except on the member page, where I want to show Footer B (A and B are different content)
I was going to do a selection by template name, but that seems not to be possible, because the template name is always: PAGE_CONTAINER
and that one is on all pages...
any ideas? the code would be:
its the page id or something like that I am missing...
Thanx for any ideas..
Luc
What I want to do.. is add a footer A (like in the video) to every page...
that works fine, thx kier..
Now (and here is my problem) i want the footer to show on every page, except on the member page, where I want to show Footer B (A and B are different content)
I was going to do a selection by template name, but that seems not to be possible, because the template name is always: PAGE_CONTAINER
and that one is on all pages...
any ideas? the code would be:
PHP:
if( page is NOT memberpage)
$contents .= $template->create('footerA');
else
$contents .= $template->create('footerB');
its the page id or something like that I am missing...
Thanx for any ideas..
Luc