Hi Tom, thanks for reply. The code looked promising, but when I tried it it did not help.
Link to site, I used the code for the “trainingsmolen” banner.
/* trainingsmolen banner ID 2681 and trainingsmolen page ID 1691 and subpages */
add_filter( 'generate_hook_element_display', function( $display, $element_id ) {
global $post;
if ( 2681 === $element_id && ( is_page() && 1691 == $post->post_parent ) ) {
$display = true;
}
return $display;
}, 10, 2 );