The editors used are displayed in the menu overview.
how can I hide these ads?
Hi bachsinger,
Sorry for the problem and for the late reply. I don’t have a solution for that at the moment unfortunately, but I’ve asked the rest of the team to have a look as well. Please reply to this thread so that your thread gets added back to our support queue.
Best regards,
Rikard
Hi!
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>';
}
Sorry the style gets invisible, here is the code
add_action(‘admin_head’, ‘my_custom_css’);
function my_custom_css() {
echo ‘
‘;
}
If you need further assistance please let us know.
Cheers!
Victoria