Hallo,
how can i can i hide the display of choosen editors in the backend pages list above every page title and in the menue setup as well?
I mean the display of “Classic Editor, Advanced Layout Architekt etc..”
Hey,
Thanks for contacting us!
Please add following code to bottom of Functions.php file of your child theme ( https://kriesi.at/documentation/enfold/child-theme/ )
add_filter('avf_gutenberg_admin_bar_edit_page_info', 'avf_remove_gutenberg_admin_bar_edit_page_info');
function avf_remove_gutenberg_admin_bar_edit_page_info(){
return false;
}
Best regards,
Yigit