Skip to content

Instantly share code, notes, and snippets.

@deckerweb
Last active August 1, 2021 15:04
Show Gist options
  • Save deckerweb/0b14eebb21f9b0c23049f44146bbb15b to your computer and use it in GitHub Desktop.
Save deckerweb/0b14eebb21f9b0c23049f44146bbb15b to your computer and use it in GitHub Desktop.
Unload Elementor Textdomain -- below Code Snippet should go into "Code Snippets" plugin at best (please avoid functions.php or similar hacks)!
<?php
/** Do NOT include the opening php tag */
add_action( 'plugins_loaded', 'ddw_unload_elementor_textdomain' );
/**
* Unload Textdomain for "Elementor" and "Elementor Pro" plugins.
* (Comment functions out for those not wanted to unload.)
*
* @author David Decker - DECKERWEB
* @link https://gist.github.com/deckerweb/0b14eebb21f9b0c23049f44146bbb15b
*/
function ddw_unload_elementor_textdomain() {
unload_textdomain( 'elementor' );
unload_textdomain( 'elementor-pro' );
} // end function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment