Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1109547

    Hi Guys,

    After one of the recent updates the pages tab in the wordpress backend shows the “– Advanced Layout Builder” next to the name of the page. How can I get rid of this? Thanks!

    #1109760

    Hey bobfurgo,

    Can you add a screenshot of the issue?

    Best regards,
    Jordan Shannon

    #1109766

    please see private area

    #1109771

    Hi,

    That is what you used to build the page.

    Best regards,
    Jordan Shannon

    #1109891

    Yes but what I’m asking is how to remove this. It wasn’t there previously until one of the recent updates.

    #1110384

    Hi bobfurgo,

    It was added by WordPress to show which editor is used to build pages since now there is Classic editor, Block editor and the Enfold’s Advanced Layout Builder. It is not added by the theme it’s added by WordPress.

    Best regards,
    Victoria

    #1110391

    Yes, I figured. But do you or anyone have suggestions on how to get rid of this? I do not want it to be there.

    #1110554

    Update – Enfold version 4.5 does not do this with the most recent version of WordPress which leads me to believe it has to do with an update within Enfold version 4.5.7. I do not want to downgrade the upgrade to 4.5. Is a way to remove this titles without downgrading?

    Thanks

    #1110585
    #1111038

    Perfect, thanks Rikard! Really appreciate it. Incase anyone sees this thread here’s the answer:

    add to child theme functions.php:

    add_filter('display_post_states','remove_ALB_post_state',999,2);
    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;
    }
    #1111079

    Hi,

    Ii’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘pages tab in WordPress backend shows – Advanced Layout Builder next to page’ is closed to new replies.