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!
Hey bobfurgo,
Can you add a screenshot of the issue?
Best regards,
Jordan Shannon
please see private area
Hi,
That is what you used to build the page.
Best regards,
Jordan Shannon
Yes but what I’m asking is how to remove this. It wasn’t there previously until one of the recent updates.
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
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.
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
Hi,
Please refer to this: https://kriesi.at/support/topic/how-to-remove-admin-bar-editor-type-from-displaying-advanced-layout-builder/
Best regards,
Rikard
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;
}
Hi,
Ii’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon