Daniel Posted March 16, 2023 Share Posted March 16, 2023 There's an easy way to disable specific modals in your invasion community software => Instead of changing the template, one can use JavaScript to remove the modal attribute:) <script> // Remove modal effect from New Request buttons document.querySelectorAll('[data-ipsdialog][href$="/support/create/"]').forEach( el => { el.removeAttribute('data-ipsdialog'); }); </script> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.