I am using the new V2 feature to make a pickaxe my default landing page.
I am bypassing the landing page completely in my use-case.
However when a user is logged in, they can click “About” which takes them to the landing page still. In my case this is a small headache as I’ve spent lots of time creating a Framer landing page - and having this menu item creates a loop to a poorly designed page. Have done my best to create a holding page there for now.
Hey @intheday not a solution per se but a sticking plaster fix… Navigate to settings and put this in the header script and it will allow you to change the URL of the about button on page load… its quite quick… give it a go - might be a useful short term fix to send that button whereever you want.
<script>
document.addEventListener("DOMContentLoaded", function() {
function updateAnchors() {
document.querySelectorAll('a[href="/"]').forEach(function(anchor) {
// Update the href attribute
anchor.href = "/home";
// Add a click listener to force navigation
anchor.addEventListener('click', function(e) {
// In case another script prevents the default action,
// force the navigation manually
window.location.href = anchor.href;
});
});
}
// Run the update once on DOM load
updateAnchors();
// Use MutationObserver to catch any dynamically added anchors
const observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.addedNodes.length > 0) {
updateAnchors();
}
});
});
observer.observe(document.body, { childList: true, subtree: true });
});
</script>```