Daniel Posted March 16 Share Posted March 16 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> Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now