<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Forum: Gravity Forms Polls Add-On - Recent Topics</title>
		<link>https://legacy.forums.gravityhelp.com/forum/gravity-forms-polls-add-on</link>
		<description>Gravity Support Forums Forum: Gravity Forms Polls Add-On - Recent Topics</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 01:25:15 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/forum/gravity-forms-polls-add-on/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>dmitryb on "popular polls load on server"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/popular-polls-load-on-server#post-283961</link>
			<pubDate>Tue, 28 May 2013 14:38:35 +0000</pubDate>
			<dc:creator>dmitryb</dc:creator>
			<guid isPermaLink="false">283961@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We have a pretty popular poll/vote contest running using this plugin. However, we're seeing a lot of records pulled from database with this call:&#60;/p&#62;
&#60;p&#62;SELECT filtered.sort, l.*, d.field_number, d.value&#60;br /&#62;
FROM wp_rg_lead l&#60;br /&#62;
INNER JOIN wp_rg_lead_detail d ON d.lead_id = l.id&#60;br /&#62;
INNER JOIN&#60;br /&#62;
( SELECT @rownum:=@rownum + 1 as sort, id&#60;br /&#62;
FROM&#60;br /&#62;
( SELECT distinct l.id&#60;br /&#62;
FROM wp_rg_lead l&#60;br /&#62;
INNER JOIN wp_rg_lead_detail d ON d.lead_id = l.id&#60;br /&#62;
WHERE l.form_id=11&#60;br /&#62;
AND status='active'&#60;br /&#62;
ORDER BY date_created DESC&#60;br /&#62;
LIMIT 2200,100&#60;br /&#62;
) page&#60;br /&#62;
) filtered ON filtered.id = l.id&#60;br /&#62;
ORDER BY filtered.sort &#60;/p&#62;
&#60;p&#62;Is this by design? Seems like a lot of extra data being pulled out. Is there a way to optimize this call? here's the live contest:&#60;br /&#62;
&#60;a href=&#34;http://www.canadianfamily.ca/contests/teacher-awards-voting-phase/&#34; rel=&#34;nofollow&#34;&#62;http://www.canadianfamily.ca/contests/teacher-awards-voting-phase/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>driveroll on "Poll Results different on front end than from back end"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/poll-results-different-on-front-end-than-from-back-end#post-340278</link>
			<pubDate>Sun, 23 Jun 2013 11:08:11 +0000</pubDate>
			<dc:creator>driveroll</dc:creator>
			<guid isPermaLink="false">340278@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi.&#60;/p&#62;
&#60;p&#62;We've set up a &#34;Poll&#34; form using the add-on and all seemed fine, however, we started getting messages from angry contestants, and then we confirmed the issue. The poll results shown on a page using the shortcode (exactly this code: [gravityform action=&#34;polls&#34; id=&#34;6&#34; mode=&#34;results&#34; title=&#34;false&#34;]), are different from the ones we can see on the form in question, in the gravity forms admin area, &#34;Results&#34; tab. I'd put screenshots for you, but I don't see how to attach images here. It is a big difference, one of the items should have 260 (as it shows correctly on the back-end) and it has 184 in the front-end and also, it had already reached 230 on the front-end before (at that moment it was just one or two votes behind the one that was showing on back-end). I really don't understand why the form displays different results on the two places, I'd think that they get the results from the same table on the database, isn't this the case?&#60;/p&#62;
&#60;p&#62;We updated everything trying to find the problem (WP version and plugins are now the latest version WP 3.5.2), I also tried deactivating all plugins except the necessary for the form, and still didn't work.&#60;/p&#62;
&#60;p&#62;This is the link for the results: &#60;a href=&#34;http://acquadichef.com/i-finalisti-2013-results/&#34; rel=&#34;nofollow&#34;&#62;http://acquadichef.com/i-finalisti-2013-results/&#60;/a&#62; (protected with password &#34;cambiami&#34; to avoid angry contestants for now) but we really need a solution for this urgently as the contest is ongoing and the results need to be published asap&#60;/p&#62;
&#60;p&#62;Best,&#60;br /&#62;
David
&#60;/p&#62;</description>
		</item>
		<item>
			<title>schleewoon on "simple set field value"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/simple-set-field-value#post-366732</link>
			<pubDate>Sun, 07 Jul 2013 17:09:25 +0000</pubDate>
			<dc:creator>schleewoon</dc:creator>
			<guid isPermaLink="false">366732@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi everyone, i have one simple problem i hope:&#60;br /&#62;
in my form i'm using values from fields, to calculate with math some new values. i made hidden fields, to set that results in them, and show after submit, but i cant. here is simple code example:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;gform_post_submission_1&#38;quot;, &#38;quot;set_post_content&#38;quot;, 10, 2);
	function set_post_content($entry, $form)
	{
              $a= $entry[1];
		$b= $entry[2];
              $c = $a + $b;

              $entry[3] = $c;
        }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;this part: $entry[3] = $c;&#60;br /&#62;
is not working.&#60;br /&#62;
how i can set that new value in field[3] entry?&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Taeke on "Label attribute for=&#34;&#34; not unique"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/label-attribute-for-not-unique#post-375764</link>
			<pubDate>Thu, 11 Jul 2013 12:16:20 +0000</pubDate>
			<dc:creator>Taeke</dc:creator>
			<guid isPermaLink="false">375764@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Two polls from 2 different forms on the same page.&#60;/p&#62;
&#60;p&#62;Poll 1 = Form 1&#60;br /&#62;
Poll 2 = Form 2&#60;/p&#62;
&#60;p&#62;Both have three options.&#60;br /&#62;
When clicking on label number 1, it activates the other radiobox also because the have the same &#60;code&#62;for=&#38;quot;choice_1_0&#38;quot;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;See screenshot:&#60;br /&#62;
&#60;a href=&#34;https://www.dropbox.com/s/r9bua2fcl8bcyre/Screen%20Shot%202013-07-11%20at%205.55.42%20PM.png&#34; rel=&#34;nofollow&#34;&#62;https://www.dropbox.com/s/r9bua2fcl8bcyre/Screen%20Shot%202013-07-11%20at%205.55.42%20PM.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Gravity Forms: 1.7.6&#60;br /&#62;
Poll: 1.5&#60;br /&#62;
WordPress: 3.5.2&#60;/p&#62;
&#60;p&#62;Hope this gets fixed by making adding a unique prefix or suffix?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Coffeeholic on "Result Output &#34;If This Then That&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/result-output-if-this-then-that#post-349374</link>
			<pubDate>Fri, 28 Jun 2013 05:04:14 +0000</pubDate>
			<dc:creator>Coffeeholic</dc:creator>
			<guid isPermaLink="false">349374@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi.&#60;/p&#62;
&#60;p&#62;I have created a multi page survey, and i need to get the results output in a different format.&#60;/p&#62;
&#60;p&#62;Ex.&#60;br /&#62;
There are 20 questions with 7 values in each (ranging from disagree to agree)&#60;/p&#62;
&#60;p&#62;What i need is for the value to display as this:&#60;br /&#62;
If the result ranges between 1 to 20, then show one answer, and if the result is between 21 and 50 then show a different answer.&#60;/p&#62;
&#60;p&#62;How do i achieve this?&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>maratino on "Plugins don&#039;t recognize my Developer License"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/plugins-dont-recognize-my-developer-license#post-222281</link>
			<pubDate>Wed, 24 Apr 2013 07:10:23 +0000</pubDate>
			<dc:creator>maratino</dc:creator>
			<guid isPermaLink="false">222281@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;All GF-plugins don't seem to recognize my active Developer License. I see a message &#34;Register your copy of Gravity Forms to receive access to automatic upgrades and support. Need a license key? Purchase one now.&#34;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jezweb on "XML-Gravity form entries send to mail with XML format, when we submit the form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/xml-gravity-form-entries-send-to-mail-with-xml-format-when-we-submit-the-form#post-320186</link>
			<pubDate>Thu, 13 Jun 2013 05:08:47 +0000</pubDate>
			<dc:creator>jezweb</dc:creator>
			<guid isPermaLink="false">320186@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
If possible to send Gravity form entries via mail with xml file format. &#60;/p&#62;
&#60;p&#62;When we submit the form, normally all form entries send to email with html format. But i need to send mail with xml format. Please tell me any ideas.&#60;/p&#62;
&#60;p&#62;Thanks in advance for any help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>schleewoon on "user data in code"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/user-data-in-code#post-299390</link>
			<pubDate>Mon, 03 Jun 2013 14:24:00 +0000</pubDate>
			<dc:creator>schleewoon</dc:creator>
			<guid isPermaLink="false">299390@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;br /&#62;
I'm using Gravity form on my wordpress web site:&#60;br /&#62;
&#60;a href=&#34;http://www.directstudentloan.net/&#34; rel=&#34;nofollow&#34;&#62;http://www.directstudentloan.net/&#60;/a&#62;&#60;br /&#62;
and i have just one question:&#60;br /&#62;
where in source code i can interrupt user data when user fill form? because i need to do some simple math on user data, before all data is sent by email to admin?&#60;br /&#62;
(from ftp: which .php file in wp-content or where?)&#60;br /&#62;
Please, help me asap.&#60;br /&#62;
Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>d.sourmaidis on "Gravity Form Adding Fields - Nothing Happens"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/gravity-form-adding-fields-nothing-happens#post-299695</link>
			<pubDate>Mon, 03 Jun 2013 20:49:50 +0000</pubDate>
			<dc:creator>d.sourmaidis</dc:creator>
			<guid isPermaLink="false">299695@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am trying to add fields to a form that I have, but when I click on any field nothing happens at all.  This continues if I try to create a new form, all the buttons are selectable but there is no result.  Is this because I do not have a license key?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ander46 on "required dropdowns not working in polls"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/required-dropdowns-not-working-in-polls#post-258066</link>
			<pubDate>Fri, 17 May 2013 14:07:57 +0000</pubDate>
			<dc:creator>Ander46</dc:creator>
			<guid isPermaLink="false">258066@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I set all dropdowns to 'required', just added a blank line to the first dropdown but the required is still not working--I can still submit my votes even if I don't select some fields. I found some forums about this problem for regular forms--they said to check &#34;enable values&#34; but I can't find this setting for the polls. This is the page I'm testing:&#60;br /&#62;
&#60;a href=&#34;http://virtualveganpotluck.com/voting-form-tests/&#34; rel=&#34;nofollow&#34;&#62;http://virtualveganpotluck.com/voting-form-tests/&#60;/a&#62;&#60;br /&#62;
not sure what I&#34;m missing, sorry if it's obvious and I didn't find it!&#60;br /&#62;
Thanks!!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
