<?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 User Favorites: SusanN</title>
		<link><a href='https://legacy.forums.gravityhelp.com/profile/susann'>susann</a></link>
		<description>Gravity Support Forums User Favorites: SusanN</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 15:28: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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "How to implement Excellent/Good/Fair ratings with radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-implement-excellentgoodfair-ratings-with-radio-buttons#post-32392</link>
			<pubDate>Fri, 12 Aug 2011 11:47:43 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">32392@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Glad you got it sorted out.  Thanks for the update.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>TeeRiddle on "How to implement Excellent/Good/Fair ratings with radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-implement-excellentgoodfair-ratings-with-radio-buttons#post-32370</link>
			<pubDate>Fri, 12 Aug 2011 07:36:47 +0000</pubDate>
			<dc:creator>TeeRiddle</dc:creator>
			<guid isPermaLink="false">32370@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Chris, thanks for your reply.&#60;/p&#62;
&#60;p&#62;The javascript was showing up at the top of the page when you viewed it? You must have viewed the page while I was tinkering with it. I was playing with different ways of inserting the js and one of those times it was appearing at the top of the page. That must have been when you looked at the page.&#60;/p&#62;
&#60;p&#62;I'm using a Genesis child theme and added the js per the StudioPress recommendation of using the wp_enqueue_script() function in functions.php&#60;/p&#62;
&#60;p&#62;I have it working properly now after adding !important to the .mychoice and likert-hover classes in the CSS. I'm not sure if that's the ideal way to fix it, but it worked.&#60;/p&#62;
&#60;p&#62;Thanks for your time!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "How to implement Excellent/Good/Fair ratings with radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-implement-excellentgoodfair-ratings-with-radio-buttons#post-32345</link>
			<pubDate>Thu, 11 Aug 2011 20:56:17 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">32345@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm going to guess that you have this code in the wrong place.  I saw this displayed when I viewed the page in Firefox:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// add support for Gravity Forms Likert/Survery style radio fields // &#60;a href=&#34;http://www.gravityforms.com&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityforms.com&#60;/a&#62; jQuery(document).ready(function() { jQuery(window).load(function() { if(jQuery(&#38;quot;.gf_likert ul.gfield_radio li input&#38;quot;).is(&#38;quot;:checked&#38;quot;)) { jQuery(&#38;quot;.gf_likert ul.gfield_radio li input:checked&#38;quot;).parent().addClass(&#38;quot;mychoice&#38;quot;); } }); // add some extra classes and markup to make our likert-style radio choices jQuery(&#38;quot;.gf_likert ul.gfield_radio li:first-child&#38;quot;).addClass(&#38;quot;likert-first&#38;quot;); jQuery(&#38;quot;.gf_likert ul.gfield_radio li:last-child&#38;quot;).addClass(&#38;quot;likert-last&#38;quot;); jQuery(&#38;quot;.gf_likert ul.gfield_radio li input&#38;quot;).addClass(&#38;quot;likert-choice&#38;quot;); jQuery(&#38;quot;.gf_likert ul.gfield_radio li label&#38;quot;).wrap(&#38;quot;
&#38;quot;); // add a hover state jQuery(&#38;quot;.gf_likert ul.gfield_radio li&#38;quot;).hover(function(){ jQuery(this).addClass(&#38;quot;likert-hover&#38;quot;); }, function(){ jQuery(this).removeClass(&#38;quot;likert-hover&#38;quot;); }); // add a selected class to the parent list item jQuery(&#38;quot;.likert-choice&#38;quot;).change(function() { if(jQuery(this).is(&#38;quot;:checked&#38;quot;)) { jQuery(this).parent().parent().parent().find(&#38;quot;.mychoice&#38;quot;).removeClass(&#38;quot;mychoice&#38;quot;); jQuery(this).parent().addClass(&#38;quot;mychoice&#38;quot;); } }); });&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Where did you add the code?  If you added it to your header.php directly, you will need to add script tags around it:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;#39;text/javascript&#38;#39;&#38;gt;
// code
// code
// code
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If you are including the JavaScript in an external file, you would not need those script tags.&#60;/p&#62;
&#60;p&#62;Additional reading about where to place the code:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Where_Do_I_Put_This_Code%3F&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Where_Do_I_Put_This_Code%3F&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>TeeRiddle on "How to implement Excellent/Good/Fair ratings with radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-implement-excellentgoodfair-ratings-with-radio-buttons#post-32325</link>
			<pubDate>Thu, 11 Aug 2011 17:42:10 +0000</pubDate>
			<dc:creator>TeeRiddle</dc:creator>
			<guid isPermaLink="false">32325@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I guess I'm bringing this thread back from the depths. &#60;/p&#62;
&#60;p&#62;I'm having trouble getting the likert scale to work just right. The form I created does not hover correctly and the tick mark does not appear on selection.&#60;/p&#62;
&#60;p&#62;You can view the form here &#60;a href=&#34;http://tomatoes.veggiegardener.com/location/&#34; rel=&#34;nofollow&#34;&#62;http://tomatoes.veggiegardener.com/location/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Scroll to the very bottom of the page just above the comments sections.&#60;/p&#62;
&#60;p&#62;I feel like I'm missing something pretty simple, but don't know what.&#60;/p&#62;
&#60;p&#62;Thanks for any suggestions!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SusanN on "How to implement Excellent/Good/Fair ratings with radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-implement-excellentgoodfair-ratings-with-radio-buttons#post-18326</link>
			<pubDate>Fri, 11 Feb 2011 15:19:44 +0000</pubDate>
			<dc:creator>SusanN</dc:creator>
			<guid isPermaLink="false">18326@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kevin, I cannot thank you enough for what you've done!  I'm really sorry it took me so long to get back to this topic.  This project got put on the back burner for a couple months, but now they're ready to go again.  &#60;/p&#62;
&#60;p&#62;Thanks again!  It works well!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How to implement Excellent/Good/Fair ratings with radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-implement-excellentgoodfair-ratings-with-radio-buttons#post-17039</link>
			<pubDate>Wed, 26 Jan 2011 15:56:07 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">17039@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;yeah, I see that. You may need to either reduce the size of the fields (change to smaller class definition) or tweak the validation styles for the padding etc.  You're just hitting the horizontal limits of the available area for the form.&#60;/p&#62;
&#60;p&#62;I personally would go with the first option - try using &#34;gf_likert_110&#34; instead of the &#34;gf_likert_120&#34; class name. It should fit better.&#60;/p&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://grab.by/8BeT&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/8BeT&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Joe T on "How to implement Excellent/Good/Fair ratings with radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-implement-excellentgoodfair-ratings-with-radio-buttons#post-17037</link>
			<pubDate>Wed, 26 Jan 2011 15:34:50 +0000</pubDate>
			<dc:creator>Joe T</dc:creator>
			<guid isPermaLink="false">17037@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;https://shrfp.com/rnv-panelist-survey/&#34; rel=&#34;nofollow&#34;&#62;https://shrfp.com/rnv-panelist-survey/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Disabling ajax definitely helps with the style, but I notice some lines are now wrapped which are not wrapped on the initial view. &#60;/p&#62;
&#60;p&#62;I have found the problem with the missing questions.  100% my fault...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How to implement Excellent/Good/Fair ratings with radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-implement-excellentgoodfair-ratings-with-radio-buttons#post-17030</link>
			<pubDate>Wed, 26 Jan 2011 13:51:47 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">17030@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Joe, are you using the Ajax submission method? If so, the likert style samples don't work with that - I originally did those before the Ajax submission was introduced into GF and haven't had an opportunity to go back and re-think the jQuery script for Ajax support.&#60;/p&#62;
&#60;p&#62;The validation highlighting plays nicely with the likert styles using the normal submission method. You can test it out on the demo at the rocketgenius.com site&#60;/p&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://grab.by/8B2M&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/8B2M&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I haven't heard anything about fields not showing up. I don't recall your form URL at the moment, if you can you post it again here for me and I'll be happy to take a look.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Joe T on "How to implement Excellent/Good/Fair ratings with radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-implement-excellentgoodfair-ratings-with-radio-buttons#post-17029</link>
			<pubDate>Wed, 26 Jan 2011 13:37:46 +0000</pubDate>
			<dc:creator>Joe T</dc:creator>
			<guid isPermaLink="false">17029@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Kevin - Found 2 more issue with the Likert style forms.  &#60;/p&#62;
&#60;p&#62;1 - When submit is incomplete the resulting display breaks the likert formatting - hilighted required fields apparently overrides the likert styles.&#60;/p&#62;
&#60;p&#62;2 - I have some mysteriously non-showing questions at the end of my form.  Has anyone else reported non-displaying questions at all?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How to implement Excellent/Good/Fair ratings with radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-implement-excellentgoodfair-ratings-with-radio-buttons#post-16966</link>
			<pubDate>Tue, 25 Jan 2011 03:09:21 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">16966@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@HaydenHancock - your form looks great. Thanks for the update.. very glad we figured it all out.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
