Hello, I run a website and we do giveaways all of the time. I designate a certian form for a giveaway that is currently running. Is there a way I can show on each post how many people have currently entered in the form? Thanks!
Hello, I run a website and we do giveaways all of the time. I designate a certian form for a giveaway that is currently running. Is there a way I can show on each post how many people have currently entered in the form? Thanks!
You would have to use PHP to display the number of entries for a specific form id.
Here is a code snippet that does that:
<?php
$summary = RGFormsModel::get_form_counts(2);
echo "The Form count for Form #2 is: ".$summary['total'].".";
?>
The example above shows the number of entries for form id 2. You would change the 2 in the get_form_counts(2) with the form id you want to display the total number of entries for.