gravityflow_timeline_step_icon

The gravityflow_timeline_step_icon filter allows the step icon to be filtered for the timeline.

Parameters

Parameter Type Definition
$step_icon Step icon The step icon HTML or image URL.
$step Step The Gravity Flow step.

Examples

Example 1 -

Placeholder code.

add_filter( 'gravityflow_timeline_step_icon', 'sh_gravityflow_timeline_step_icon', 10, 2 );
    function sh_gravityflow_timeline_step_icon( $step_icon, $step) {
        //Do something here;
    }

Placement

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