Hello Uli,
Ideally, you will have to load the external JS file through the wp_enqueue_script
function in the child theme.
https://developer.wordpress.org/reference/functions/wp_enqueue_script/
If you want to go that route, please install and activate the child theme and login through FTP then edit the functions.php
then add this code:
wp_enqueue_script( 'my-external-js', 'https://www.###URL###.de/modul/JS/AdvancedIframeResizerHost.js', '', '', false );
Another option would be to load the script via the wp_head
filter. To do that, please add this code in the functions.php
file:
add_action('wp_head', 'add_header_code');
function add_header_code(){
?>
<script src="https://www.###URL###.de/modul/JS/AdvancedIframeResizerHost.js"></script>
<?php
};
Hope this helps.