Thanks. I try to use your suggestion… Both in AJAX and in PageReload mode.
But for a reason I cant understand the hooks are not called anymore.
Here is my test code:
add_action('forminator_form_after_handle_submit', 'test_hook_submit', 10, 2);
function test_hook_submit($form_id, $response) {
error_log("Hook SUBMIT déclenché - Form ID: " . $form_id);
}
add_action('forminator_form_after_save_entry', 'test_hook_save', 10, 2);
function test_hook_save($form_id, $response) {
error_log("Hook SAVE déclenché - Form ID: " . $form_id);
}