It is possible to hide the podPress footer on certain pages by adding this code to the template .php file of the page(s).
for example:
if ( TRUE == is_page('impressum') ) {
remove_action('wp_footer', 'podPress_wp_footer');
}
This code will hide the podPress footer on the page with the slug name 'impressum'. But you can use every page slug name or page ID instead. The function is_page() allows also other page identifiers (read more...).
This code snippet needs to be placed above The Loop e.g. directly after get_header();.