gravityflow_save_progress_button_text_user_input

Use this filter to change the text of the save progress button on the user input step. In order for this filter to have effect, you must set Save Progress to 'Submit buttons' on the step settings.

The follow example will change the button to "Save Progress".

add_filter( 'gravityflow_save_progress_button_text_user_input', 'sh_gravityflow_update_save_button_text_user_input' );
function sh_gravityflow_update_save_button_text_user_input( $text ) {
	return "Save Progress";
}

Placement

This code should be placed in the functions.php file of your active theme.