gravityflowchecklists_form_url

Allows the URL to the form from the checklist to be modified.

The following snippet added to your theme functions.php file would modify which URL the checklist goes to for a specific form.

add_filter( 'gravityflowchecklists_form_url', 'custom_checklist_form_url', 10, 4 );

function custom_checklist_form_url( $url, $form, $entries, $exempt ) {
    //Replace with your desired Form ID and custom URL
    if ( $form['id'] == '8' ) {
        $url = '/custom-checklist-form-page/';
    }
    return $url;
}