Hi Jarkko,
Thanks for providing the login credentials. I checked the page you mentioned and found some javascript errors that were preventing the page from loading at all. I disabled Javascript minification and was able to get the page to load and see the error message you’re describing.
If you switch to skeleton mode from the icon in the bar you can inspect elements that are not showing correctly in the preview. I checked this way and can see you have a shortcode in that text element for an event plugin. This is the cause of the invalid markup.
Anytime we see the error about invalid template we can find out more info by opening the developer tools and looking at the console. Specifically, the builder is having a hard time processing some invalid markup being output by that plugin. The builder will check anything that it needs to display for HTML syntax errors. This is because if we try to add invalid HTML into the live preview it could break other elements or the entire preview. Most browsers can handle invalid HTML and still show a correct result on the front end of a site but it’s more difficult to manage when you’re constructing the page in a live preview environment.
The specific error we’ve encountered is because your plugin is outputting a closing </meta>
tag. The meta
tag is what is considered a “void element” and it should not have a closing tag as it could never have content (https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta).
This isn’t actually a problem since the front end of your site should continue to function. Unfortunately there isn’t much we can do to make it display correctly in the preview. You could bring this information to the attention of the plugin developers who authored the shortcode you’re using. They might be able to advise a solution or shed further light on the situation.
Hopefully this helps explain what’s going on here!