Created
May 12, 2026 23:46
-
-
Save askwpgirl/a81a7cd5bf1b3f631e6422fa168c2b61 to your computer and use it in GitHub Desktop.
Elementor - Hide Angie and V4 Options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action( 'elementor/editor/after_enqueue_styles', function() { | |
| wp_add_inline_style( | |
| 'elementor-editor', | |
| ' | |
| #elementor-panel-category-v4-elements, | |
| #elementor-panel-category-custom-widgets { | |
| display: none !important; | |
| } | |
| ' | |
| ); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment