Passa al contenuto principale
Valerio Loi Photography School
Apri menu
Menu
Corsi
Consulenze
Accedi
Hai dimenticato la tua password?
Inserisci l'e-mail indicata all'iscrizione e ti invieremo le istruzioni per il ripristino
Email
$(() => { function removeElements() { var selectors = [ 'header', 'aside', 'h1.my-account__heading', 'h2.my-account__heading', 'h2.my-account__subheading', '.my-account__menu', '.my-account__banner', 'footer', '.my-account__breadcrumb' ]; selectors.forEach(function(selector) { var elements = document.querySelectorAll(selector); elements.forEach(function(element) { element.remove(); }); }); } function notifyParent() { if (window.parent && window.parent !== window) { window.parent.postMessage({ type: 'thinkific:nla:rendered' }, '*'); } } try { // Check if we're in an iframe and parent URL contains /hub if (window.self !== window.top && window.parent.location.href.includes('/hub')) { removeElements(); notifyParent(); } } catch (e) { // Cross-origin access blocked - fallback to checking referrer if (document.referrer && document.referrer.includes('/hub')) { removeElements(); notifyParent(); } } });