Hi guys,
Just experimenting with new version of Custom Table. Thanks for the bug fixes and adding those in hooks.
We seem to be having an issue however. The action mbct_after_update doesn't seem to be firing when I click on the 'Save' button after editing a record. This is the code we are using. Can you help?
add_action('mbct_after_update ','indigo_ipl_on_update',10,3);
function indigo_ipl_on_update($object_id,$table_name,$row) {
write_log(['file' => __FILE__,'function' => __FUNCTION__,'line' => __LINE__, 'msg' => 'mbct_after_update', 'data' => [$object_id,$table_name,$row]]);
}
Cheers,
Will