Howdy fellow Thematicians...
i want to install some google tracking into the footer of a thematic child theme.
i used this in the functions
function below_footer(){
?>
//google code goes here
<?php
}
add_action('thematic_after', 'below_footer');
it all works just fine...
but i now need to install another goal tracking on one page only.
i tried adding an is_page like this , but it did nothing. Still showing on every page.
function below_footer(){
if (is_page('pagenamehere')) {
}
?>
//google code goes here
any suggestions appreciated.
j