Tagged: Erweiterter Layout Architekt
Hello Support,
how to detele/disable the Text “Erweiterter Layout Architekt” in the sites or menu Listing in WordPress?
The Text ist to long an makes it confusing to read.
Thanks.
Hey dillionline,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function remove_ALB_post_state( $post_states, $post ) {
if("! has_blocks( $post->ID )") {
unset($post_states['wp_editor']);
}
if("!= Avia_Builder()->get_alb_builder_status($post->ID)") {
unset($post_states['avia_alb']);
}
return $post_states;
}
add_filter('display_post_states','remove_ALB_post_state',999,2);
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
then add the above code and save.
Best regards,
Mike
Works. Thank you very much!
Hi,
Great, I’m glad that Mike could help you out. Please let us know if you should need any further help on the topic, or if we can close it
Best regards,
Rikard
Can be closed. Thx.