Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Gravity Forms Plugin // Submission count WordPress

  • SOLVED

Hello,

How do i display in one template the number of submissions from a form, as a count?



tks

Answers (1)

2011-01-01

Chris Hajer answers:

<?php
$summary = RGFormsModel::get_form_counts(2);
echo "The Form count for Form #2 is: ".$summary['total'].".";
?>


That is what you would use to get the total submissions for form 2. Put that in your template file wherever you want it displayed, or in a widget using the PHP Code Widget:

http://wordpress.org/extend/plugins/php-code-widget/