<?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 Topic: Is it possible to add a form for voting with stars ?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars</link>
		<description>Gravity Support Forums Topic: Is it possible to add a form for voting with stars ?</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 20:26:04 +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/topic/is-it-possible-to-ad-a-form-for-voting-with-stars" rel="self" type="application/rss+xml" />

		<item>
			<title>Ajax on "Is it possible to add a form for voting with stars ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars#post-244156</link>
			<pubDate>Thu, 09 May 2013 06:04:07 +0000</pubDate>
			<dc:creator>Ajax</dc:creator>
			<guid isPermaLink="false">244156@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi - I was looking to create a form for a client where their customers could rate their service. And have read through this thread a few times trying to find a solution.&#60;/p&#62;
&#60;p&#62;I have made a solution using Gravity Foms, FontAwsome, CSS and a little javascript. I'm not quite finished with the solution - and I can't share the URL (yet) as the site is still in development. But I thought that I would leave a comment for other people looking for a solution.&#60;/p&#62;
&#60;p&#62;My approach is:&#60;/p&#62;
&#60;p&#62;1. Download and include FontAwesome in your site: &#60;a href=&#34;http://fortawesome.github.io/Font-Awesome/&#34; rel=&#34;nofollow&#34;&#62;http://fortawesome.github.io/Font-Awesome/&#60;/a&#62;&#60;br /&#62;
2. give your form a custom css class in the gravity forms admin - i called mine &#34;rating-form&#34;&#60;br /&#62;
3. set up a radio button field with five radio buttons (or whatever number you want)&#60;br /&#62;
4. in the text section for each radio button put the following: &#38;lt;i class=&#34;icon-star-empty&#34; id=&#34;1&#34;&#38;gt;&#38;lt;/i&#38;gt;&#60;br /&#62;
Using both class - this will be the font that is displayed &#38;amp; an id, which equals the rating level.&#60;br /&#62;
5. Add a little CSS to hide the input button and format the text:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.rating-form .gfield_radio li {
float: left;
padding: 5px !important;
width: 60px;
display: block;
font-size: 60px;
}
.rating-form .gfield_radio li input { display: none; }
.rating-form .gfield_radio li label { margin-left: 0 !important; }

i.icon-star {color: #0f6cae ;}
i.icon-star-empty { color: #999;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;6. Add a little javascript (this is not finished - it just works for clicks - and doesn't work if the page reloads and not all fields are filled in. It could also do with a mouseover and mouseout function or two.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;jQuery(document).ready(function($) {
  	if ($( &#38;quot;.rating-form&#38;quot; ).length &#38;gt; 0) { // check that the form is on the page
		$( &#38;quot;li i.icon-star-empty&#38;quot; ).click(function() {
			var num = $(this).attr(&#38;#39;id&#38;#39;) ;
			// fill in the stars
			for (var i=0;i&#38;lt;=num;i++) {
				$(&#38;quot;#&#38;quot;+i).removeClass(&#38;#39;icon-star-empty&#38;#39;).addClass(&#38;#39;icon-star&#38;#39;)  ;
			}
			// empty stars above the one clicked
			for (var k=5;k&#38;gt;num;k--) {
				$(&#38;quot;#&#38;quot;+k).removeClass(&#38;#39;icon-star&#38;#39;).addClass(&#38;#39;icon-star-empty&#38;#39;)  ;
			}
		});
	}
 });&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Ajax
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Is it possible to add a form for voting with stars ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars#post-41013</link>
			<pubDate>Mon, 14 Nov 2011 10:28:09 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">41013@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Two things.  I would add a default value, maybe 1, or lowest, or 3 for average, so there is always a value.  When you view the single entry, that rating will be there.  Then, when you click the blue edit button, you will see that you can use the drop down you added to rate the entry.&#60;/p&#62;
&#60;p&#62;Does that work for you?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Elise on "Is it possible to add a form for voting with stars ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars#post-40985</link>
			<pubDate>Sun, 13 Nov 2011 23:53:11 +0000</pubDate>
			<dc:creator>Elise</dc:creator>
			<guid isPermaLink="false">40985@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok, I actually just set that up to try while I was waiting for a response (which was very quick, thank you) but, I can't see the admin only parts. &#60;/p&#62;
&#60;p&#62;I've gone into the entry and still can't see it, where does admin enter the data?&#60;/p&#62;
&#60;p&#62;I'm guess it's right in front of my face ... :)&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Elise
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Is it possible to add a form for voting with stars ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars#post-40981</link>
			<pubDate>Sun, 13 Nov 2011 23:11:42 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">40981@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can use an admin only field drop down, with values of 1 to 5.  Then you can sort based on that field to get your most qualified leads to the top.  It would not be as visual as a star rating, but the ratings would be there for admin use.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Elise on "Is it possible to add a form for voting with stars ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars#post-40973</link>
			<pubDate>Sun, 13 Nov 2011 21:13:51 +0000</pubDate>
			<dc:creator>Elise</dc:creator>
			<guid isPermaLink="false">40973@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We are looking to add an admin only rating for each enquiry submitted via gravity forms.&#60;/p&#62;
&#60;p&#62;Basically each enquiry would be rated based on 5 criteria which would then provide an average total rating for each enquiry. This is only for the admin and would be used to rate the quality of leads we get from different sources.&#60;/p&#62;
&#60;p&#62;Is this type of functionality coming soon?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>successfulgeek on "Is it possible to add a form for voting with stars ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars#post-34482</link>
			<pubDate>Mon, 05 Sep 2011 14:18:53 +0000</pubDate>
			<dc:creator>successfulgeek</dc:creator>
			<guid isPermaLink="false">34482@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm starting to look at ways to collect reviews myself and if this comes in Gravity Forms that would be very handy. Love the support you guys give.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tremolo on "Is it possible to add a form for voting with stars ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars#post-33164</link>
			<pubDate>Sun, 21 Aug 2011 23:29:24 +0000</pubDate>
			<dc:creator>Tremolo</dc:creator>
			<guid isPermaLink="false">33164@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We're trying to do something similar by using the myreviewplugin. I'm trying to find some information on how to use their star rating system inside a Gravity form. I have a good PHP guy but am trying to find any documentation on this. Can anyone point me in the right direction?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webmktco on "Is it possible to add a form for voting with stars ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars#post-29264</link>
			<pubDate>Wed, 06 Jul 2011 21:49:07 +0000</pubDate>
			<dc:creator>webmktco</dc:creator>
			<guid isPermaLink="false">29264@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Carl, I'd like this option too!&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Is it possible to add a form for voting with stars ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars#post-28265</link>
			<pubDate>Tue, 21 Jun 2011 12:53:14 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">28265@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Currently there is no ratings/star ratings field.  So this isn't currently a field option.  You'd have to use radio buttons which ask for a number rating or a drop down that asks for a number rating.  We do plan on implementing a Ratings field type with options such as stars in a future release.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>beuzathor on "Is it possible to add a form for voting with stars ?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/is-it-possible-to-ad-a-form-for-voting-with-stars#post-28244</link>
			<pubDate>Tue, 21 Jun 2011 11:32:19 +0000</pubDate>
			<dc:creator>beuzathor</dc:creator>
			<guid isPermaLink="false">28244@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No Answer..&#60;/p&#62;
&#60;p&#62;Is it impossible or my english is too bad ? :)
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
