Advanced Usage

APIs

Add Custom Frontend logics

Implement this function allows you to implement frontend logics that will run after after subscription creation.

How?

Define the following function in any of your js files, such as in your custom theme files, and implement any logic you’d like within the body.

window.billflow_wp_handle_response = function myHandleResponseFunction({event, response, extras}){
	// your custom handling logic goes here
		console.log('called servicebot_wp_handle_response', response)
    console.log('event:' event)
}

Last updated