Skip to content

Instantly share code, notes, and snippets.

@Musilda
Created August 9, 2019 09:16
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 Musilda/175b56169a24cc84cbe4959a6d280955 to your computer and use it in GitHub Desktop.
Save Musilda/175b56169a24cc84cbe4959a6d280955 to your computer and use it in GitHub Desktop.
<?php
$status = apply_filters( 'fakturoid_webhook_paid_status', 'completed', $order );
add_filter( 'fakturoid_webhook_paid_status', 'toret_fakturoid_webhook_paid_status', 10, 2 );
function toret_fakturoid_webhook_paid_status( $status, $order ){
return 'processing';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment