gravityflow_in_progress_label_user_input

The gravityflow_in_progress_label_user_input filter allows the 'in progress' label to be modified on the User Input step.

Parameters

Parameter Type Definition
$step Step The workflow step.
$in_progress_label String The 'In Progress' label.

Examples

Example 1 -

Placeholder code.

add_filter( 'gravityflow_in_progress_label_user_input', 'sh_filter_gravityflow_in_progress_label_user_input', 10, 2 );
    function sh_filter_gravityflow_in_progress_label_user_input( $in_progress_label, $step ) {
        return 'Save for later';
    }

Placement

This code should be placed in the functions.php file of your active theme or in a custom functions plugin.