Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1203467

    The editors used are displayed in the menu overview.
    How can I hide these ads?

    Menu overview

    #1203653

    Hey Bernd,

    Here is the code you can put in your funtions.php

    
    add_action('admin_head', 'my_custom_css');
    
    function my_custom_css() {
      echo '<style>
    		.menu-edit  .item-type.item-type-default {
    		    display: none;
    		}
      </style>';
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.