Hello @mpbaweb
Yes of course, that’s possible.
By default, the shortcode for the results list has the structure: [CP_CALCULATED_FIELDS_RESULT_LIST formid="1"]
(assuming that 1 is the id of the form whose submissions you want to list), however, you can decide the fields to include in the summaries, like in the following piece of code:
[CP_CALCULATED_FIELDS_RESULT_LIST formid="1"]
<p><%fieldname1_label%>:<%fieldname1_value%></p>
<p>New Label: <%fieldname2_value%></p>
<p><%fieldname3%></p>
[/CP_CALCULATED_FIELDS_RESULT_LIST]
as you can see it is possible to use all special tags supported by the results shortcode and the notification emails (the complete list is available in the following link: https://cff.dwbooster.com/documentation#special-tags)
One of these tags is: <%payment_status%>
that is replaced by the texts: “Paid” or “Not Paid” as corresponds. For example, assuming you want to include a summary with all fields and the payment status:
[CP_CALCULATED_FIELDS_RESULT_LIST formid="1"]
<div><%INFO%></div>
<p>Payment status: <%payment_status%></p>
[/CP_CALCULATED_FIELDS_RESULT_LIST]
Best regards.