Outseta Load Account Data

window.addEventListener(“DOMContentLoaded”, function () { console.log(“ACCOUNT LOADED”); const visitLink = document.getElementById(“visit_link”); if (!visitLink) { console.error(“#visit_link element not found.”); return; } let deployTriggered = false; // Define triggerDeploy globally so it can be called from onclick window.triggerDeploy = function() { if (deployTriggered)…Continue reading

HIDE VIEW COUNT css

.ultp-post-view.ultp-block-meta-element { display: none !important; } .ultp-builder-content p { text-transform:none!important; line-height: 1.5; }Continue reading

Menu sticky/page scroll issue fix – CSS

/* Lock page scroll when any mobile menu is open */ html.menu-open, body.menu-open { height: 100%; overflow: hidden; } /* Global dim backdrop (avoids per-menu stacking/context issues) */ @media (max-width: 980px) { body.menu-open::before { content: “”; position: fixed; inset: 0;…Continue reading