Signature do_action( ‘wpas_ticket_closed_by_agent’, $post_id ); Typical Usage This action hook gets fired after a ticket is closed by the agent – as long as the agent also provides a reply at the same time as they are closing the ticket. Example...
Signature do_action( ‘wpas_ticket_before_close_by_agent’, $post_id ); Typical Usage This action hook gets fired before a ticket is closed by the agent – as long as the agent also provides a reply at the same time as they are closing the ticket....
Signature do_action( ‘wpas_after_close_ticket’, $ticket_id, $update, $user_id ); Typical Usage This action hook gets fired after a ticket is closed. Example Usage function wpas_my_after_close_ticket( $ticket_id, $update, $user_id ) { // log the ticket...
Recent Comments