Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. $status = apply_filters( 'idoklad_control_status', 'completed', $order );
  4.  
  5. add_filter( 'idoklad_control_status', 'toret_change_paid_status', 10, 2 );
  6. function toret_change_paid_status( $status, $order ){
  7. return 'zaplaceno';
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement