Difficulty
Easy
Remove those Elementor widgets you don't use
There are many Elementor Widgets that I don’t use and they just get in the way. Add the code below to a plugin or your Child Theme to unregister some of those pesky widgets.
Uncomment the widgets you want to unregister.
// ///// Just uncomment the ones you want to remove from Elementor.
function binaryblackboard_remove_unused_widgets( $widgets_manager ) {
$widgets_to_unregister = [
// 'inner-section',
// 'video',
// 'divider',
// 'spacer',
// 'google-maps',
// 'icon',
// 'icon-box',
// 'star-rating',
// 'image-carousel',
// 'image-gallery',
// 'icon-list',
// 'counter',
// 'progress',
// 'testimonial',
// 'tabs',
// 'accordion',
// 'toggle',
// 'social-icons',
// 'alert',
// 'audio',
// 'html',
// 'menu-anchor',
// 'sidebar',
// 'read-more',
];
foreach ( $widgets_list as $widget ) {
$widgets_manager->unregister( $widget );
}
}
add_action( 'elementor/widgets/register', 'binaryblackboard_remove_unused_widgets' );