On gravityflow status after the ID is found and the entry is opened I would like to resend notification without having to go to the backend.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
Hi Jerome,
It would depend on how your notifications are setup. There isn’t a default way to do that, but the following hooks might help you get to a solution:
- gravityflow_entry_detail_content_after hook fires at the bottom of the entry details page. The GFEntryDetail (in Forms) has a meta_box_notifications function that gives you a good example for how to setup inputs based on the notifications. That may need separate form object than what Gravity Flow is providing at that point for correct processing.
- gravityflow_admin_actions_workflow_detail lets you customize the admin actions dropdown options. Combined with gravityflow_admin_action_feedback you could potentially setup a custom action to trigger the notifications you want. If your notifications are tied to steps, the existing “send to step” option would work, but you’d want to make sure your workflow has some checks in it so that steps which follow the selected one don’t also send unexpectedly.
Regards,
Jamie