Created
May 17, 2023 15:35
-
-
Save cartpauj/aacbeb1c819dd29d5c719b6e374113d7 to your computer and use it in GitHub Desktop.
Disable MP Elementor protection HTML alterations
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
<?php | |
// Copy lines 4-6 below into a plugin like Code Snippets (run on front-end only) | |
add_filter('mp_elementor_include_section_html', function() { | |
return false; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Copy lines 4-6 below into a plugin like Code Snippets (run on front-end only)