Skip to content

Instantly share code, notes, and snippets.

@cartpauj
Created May 17, 2023 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cartpauj/aacbeb1c819dd29d5c719b6e374113d7 to your computer and use it in GitHub Desktop.
Save cartpauj/aacbeb1c819dd29d5c719b6e374113d7 to your computer and use it in GitHub Desktop.
Disable MP Elementor protection HTML alterations
<?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;
});
@cartpauj
Copy link
Author

Copy lines 4-6 below into a plugin like Code Snippets (run on front-end only)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment