Skip to content

Instantly share code, notes, and snippets.

@jdeeburke
Last active July 29, 2019 22:37
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 jdeeburke/26b9c9e3350cf5fcf76953bc9947d85e to your computer and use it in GitHub Desktop.
Save jdeeburke/26b9c9e3350cf5fcf76953bc9947d85e to your computer and use it in GitHub Desktop.
Jilt Workality Plus workaround
<?php
// Add the following snippet below the line to the bottom of your theme's functions.php file or by using the Code Snippets plugin: https://wordpress.org/plugins/code-snippets/
/******************************************************************************/
add_action( 'save_post', function( $post_id, $post ) {
if ( doing_action( 'action_scheduler_stored_action' ) || doing_action( 'woocommerce_webhook_process_delivery' ) ) {
unset( $_REQUEST['pts_post_type'] );
}
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment