Skip to content

Instantly share code, notes, and snippets.

@mattsandersuk
Last active December 15, 2020 18:22
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 mattsandersuk/47375f31ba2f5a6edb7e8af6b09b99dd to your computer and use it in GitHub Desktop.
Save mattsandersuk/47375f31ba2f5a6edb7e8af6b09b99dd to your computer and use it in GitHub Desktop.
Hacky fix for the wp / divi console error `live is not a function`
<?php
add_action('admin_footer', function(){
echo "
<script>
jQuery.fn.extend({
live: function (event, callback) {
if (this.selector) {
jQuery(document).on(event, this.selector, callback);
}
return this;
}
});
</script>
";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment