Skip to content

Instantly share code, notes, and snippets.

@Musilda
Created August 7, 2019 12:20
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/1be23e87ce173f07d87cfdb5ae561a07 to your computer and use it in GitHub Desktop.
Save Musilda/1be23e87ce173f07d87cfdb5ae561a07 to your computer and use it in GitHub Desktop.
<?php
$status = apply_filters( 'idoklad_control_status', 'completed', $order );
add_filter( 'idoklad_control_status', 'toret_change_paid_status', 10, 2 );
function toret_change_paid_status( $status, $order ){
return 'zaplaceno';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment