Force iframes to have a title
Put this in an HTML chunk on the page with the issue
<script>
document.addEventListener("DOMContentLoaded", function() {
const iframes = document.querySelectorAll("iframe");
iframes.forEach((iframe) => {
if (!iframe.hasAttribute("title")) {
iframe.setAttribute("title", "Generic Title");
}
});
});
</script>