• Resolved tpsve

    (@tpsve)


    Hi, can you please tell me the which hook is used in send button of form , I need to work on custom function please

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    The following hook can be used to know when a booking is made:

    add_action( 'cpappb_process_data', 'new_appointent', 11, 1 );
    
    function new_appointment($params)
    {
        // do stuff here, 
        // $params is an associative array with the booking data
    }

    Thank you for using the plugin!

    Thread Starter tpsve

    (@tpsve)

    Thank you So much for your prompt reply !

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Booking Forms’ SHook’ is closed to new replies.