abdulkrm

Hide Content AI module if Disabled

Oct 19th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function hide_specific_div() {
  2. ?>
  3. <script type="text/javascript">
  4. document.addEventListener('DOMContentLoaded', function () {
  5. var rankMathBoxes = document.querySelectorAll('.rank-math-box:not(.active)');
  6. rankMathBoxes.forEach(function(box) {
  7. if (box.querySelector('i.rm-icon-content-ai')) {
  8. box.style.display = 'none';
  9. }
  10. });
  11. });
  12. </script>
  13. <?php
  14. }
  15. add_action('admin_head', 'hide_specific_div');
Advertisement
Add Comment
Please, Sign In to add comment