TinyWebGallery wrote:
The id in the ai_external.js is empty.
If you open the Javascript console you see the error.
Can you try to save the administration again?
in
https://criterionvoice.com/wp-content/plugins/advanced-iframe/js/ai_external.js
you should not have:
if (typeof iframe_id === 'undefined') {
var iframe_id_ = "";
} else {
var iframe_id_ = iframe_id;
}
but
if (typeof iframe_id === 'undefined') {
var iframe_id_ = "advanced_iframe";
} else {
var iframe_id_ = iframe_id;
}
you can also set this id by adding
<script>
var iframe_id="advanced_iframe";
</script>
before the ai_external.js.
thanks . I added the id to the settings and it doesn't show up anymore in error.
However it still is not working. now its giving me the following error
***
Advanced iframe configuration problem: The height of the page cannot be detected with the current settings. Please check the documentation of 'element_to_measure' how to define an alternative element to detect the height.
***
I don't know what this error means and why do i need to define an height , isn't it supposed to get it automatically?