formcierge_create_wc_order
Action

Since v1.1.0

Fires when Formcierge attempts to create a WooCommerce order from a form submission.

Parameters
$form_id int The form ID.
$entry_id int The entry ID.
Defined in
includes/Integrations/WooCommerceIntegration.php
add_action( 'formcierge_create_wc_order', function ( $form_id, $entry_id ) {
    error_log( "Creating WC order for entry $entry_id" );
}, 10, 2 );