//remove sidebar from section templates in elementor editor
function remove_sidebar_elementor_section_templates( $layout ) {
if ( is_singular( 'elementor_library' ) ) {
$template_type = get_post_meta( get_the_ID(), '_elementor_template_type', true );
if ( 'section' === $template_type ) {
return 'no-sidebar';
}
}
return $layout;
}
add_filter( 'generate_sidebar_layout', 'remove_sidebar_elementor_section_templates' );