Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1437299

    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.

    #1437381

    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:
    Enfold_Support_2680.jpeg
    then add the above code and save.

    Best regards,
    Mike

    #1437691

    Works. Thank you very much!

    #1437705

    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

    #1437714

    Can be closed. Thx.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘detele/disable the Text “Erweiterter Layout Architekt”’ is closed to new replies.