You could install this to see if anything pops out:
https://wordpress.org/plugins/health-check/
I already installed it and checked but nothing showed up, just few recommendations, PHP version (we are on 7.2) and imagick.
Looking at the source, I see a messed up IFRAME tag:
<div class="wpb_wrapper">
<iframe width="100%" height="500" align="center" frameborder="1"</iframe data-src="https://inventasoft.com/pojmovnik" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==">
</div>
I guess it should be:
<div class="wpb_wrapper">
<iframe width="100%" height="500" align="center" frameborder="1" data-src="https://inventasoft.com/pojmovnik" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="></iframe>
</div>
Notice it has lazyload. Try temporarily disabling your lazyload plugin/option and see what happens.
This is really weird, as something messed up with my iFrame.
In wordpress for the page I have this:
<iframe src="https://inventasoft.com/pojmovnik" width="100%" height="500" align="center" frameborder="1"</iframe>
No lazyload, no data-src, no giff
Where did it came from?
And I don’t have lazyload plugin installed.
Change your code to this:
<iframe src="https://inventasoft.com/pojmovnik" width="100%" height="500" align="center" frameborder="1"></iframe>
Missing a > after "1".
Lazyload is most likely from a plugin. I have the Lazy Load by WP Rocket which does something similar with images. General it’s good to have as it makes the initial page load faster and only loads the images as your scroll down.
The data-src stuff is made by WordPress so that different devices can load appropriate image sizes.
Mark,
Your suggestion works!
Thank you very much!
I didn’t look at the usual suspects (me) instead was looking for the ghosts.
Will try your suggestion with Lazy Load by WP Rocket.