gravityflow_approval_note_label_workflow_detail

The gravityflow_approval_note_label_workflow_detail filter can be used to modify the 'Note' label on the Approval step.

Parameters

$note_label string

The label to be overridden.

$step Gravity_Flow_Step

The current step.

Example

add_filter( 'gravityflow_approval_note_label_workflow_detail', 'filter_approval_note_label_workflow_detail', 10, 2 ); 
function filter_approval_note_label_workflow_detail( $approve_label, $step ) {
    return 'Your new note label'; 
}

Since

This filter was added in version 1.8.1