gravityflow_below_status_list_user_input

The gravityflow_below_status_list_user_input action allows content to be added in the workflow box below the status list.

Parameters

Parameter Type Definition
$step Step The workflow step.
$form Form The Form object.

Examples

Example 1 -

Placeholder code.

add_action( 'gravityflow_below_status_list_user_input', 'sh_gravityflow_below_status_list_user_input', 10, 2 );
 function sh_gravityflow_below_status_list_user_input( $step, $form ) {
        echo "my content";
    }

Placement

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