Partial Entries Progress Status Merge Tag

I have deployed the partial entries add-on enabled with GravityView add-on displaying all entries of a form on the frontend. I want to be able display a status of an entry, whether its been completed or in progress (ie: Draft).

Is there a merge tag or a method I can tap into to make this happen?

Partial Entries doesn’t include merge tags for the progress or status.

Gravity Forms does include the entry merge tag for accessing the raw entry. The Partial Entries progress is registered entry meta, so it should be available via that merge tag, e.g. {entry:partial_entry_percent}.

1 Like

Also, the status would be available using the {entry:status} merge tag.

1 Like

As far as I know, the add-on doesn’t override the value of the entry status property, so that might only output active.

1 Like

Thanks for the input.
I tried both and Richard you’re right by saying, using {entry:status} will output ‘active’ for each entry.
When using {entry:partial_entry_percent} only entries that were partially completed gave me a value. Completed entries gave me no value.

So Zack, in GravityView I created a column in my view with this logic which allowed me to define which entries were in draft and the percentage left to complete.

[gvlogic if=“{entry:partial_entry_percent}” isnot=“”]Draft - {entry:partial_entry_percent}% complete[/gvlogic]

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.