Skip to content

Instantly share code, notes, and snippets.

@mariadanieldeepak
Last active April 25, 2017 18:01
Show Gist options
  • Save mariadanieldeepak/2a8569ff610e1fa7e05901aafdb2aafc to your computer and use it in GitHub Desktop.
Save mariadanieldeepak/2a8569ff610e1fa7e05901aafdb2aafc to your computer and use it in GitHub Desktop.
Remove all Optins from WordPress posts
$( document ).ready(function() {
$( document ).on("OptinMonsterBeforeShow", function(a, b, c) {
// Remove all optins whose ID begins with 'om-'
$( "[id^='om-']" ).remove();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment