Counting multiple forms
You can since version 0.9.7 also count entries (or a number field total for multiple entries) for multiple forms.
Counting total of all entries
When you use the gravitywp_count shortcode without formid configured, it will give you the total number of entries on your WordPress site:
[gravitywp_count]
Counting total entries multiple (specific) forms
If you want to get the total number of multiple specified forms, you can add multiple formid’s separated by a comma. This example will count the total number of entries for formid 1, 2 and 3 together:
[gravitywp_count formid='1,2,3']
Counting number field total of multiple forms
You can also count the total of a Number Field for multiple entries for multiple forms. This only works when the number_field has the same ID in the forms that are concluded.
For example this shortcode counts together the Number Field with ID 1 for Forms 1, 2 and 3:
[gravitywp_count formid='1,2,3' number_field='1']