Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1221086

    Hi,

    We have some menus where the menu titles are overlapping the text Classic Editor & Avia Layout Builder.
    Please check the screenshot: https://dns.d.pr/59uGVQ/eX8YHyYZtA

    It seems the main problem is the “Avia Layout Builder” being mentioned there and it takes a lot of space.

    Is there any solution for this?
    Thank you

    #1221556

    This happens to me as well…

    #1223047

    Hi,

    Thank you for the inquiry.

    We can remove the item type container with css but we have to hook it in the admin head tag. Please try this code in the functions.php file.

    function admin_head_mod() {
      echo '<style type="text/css">
      .menu-item-bar .item-type {
    	display: none !important;
      }
      </style>';
    }
    add_action('admin_head', 'admin_head_mod', 9999);
    

    Best regards,
    Ismael

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