Hello,
How do i display in one template the number of submissions from a form, as a count?
tks
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/