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
This happens to me as well…
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