• Resolved gayii3

    (@gayii3)


    Hi there,

    We are using Brilliant web-to-lead forms on our website but we now have Pardot and would like to track leads in Pardot too. How can we use Pardot forms with the preexisting Brilliant web-to-lead forms?

Viewing 1 replies (of 1 total)
  • Plugin Author brilliantplugins

    (@brilliantplugins)

    Filters, at present.

    salesforce_w2l_after_submit

    Allows you to do something (read only) with the post data after it’s submitted to SalesForce.

    e.g. Send it to another API, log it to a database, etc.

    add_action('salesforce_w2l_after_submit', 'salesforce_w2l_after_submit_example', 10, 3 );
    
    function salesforce_w2l_after_submit_example( $post, $form_id, $form_type ){
        error_log( 'AFTER SUBMIT '.print_r($post,1) );
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Wanting to add Pardot forms’ is closed to new replies.