Last active
July 29, 2019 22:37
-
-
Save jdeeburke/26b9c9e3350cf5fcf76953bc9947d85e to your computer and use it in GitHub Desktop.
Jilt Workality Plus workaround
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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