<?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: Support for custom posts</title>
		<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts</link>
		<description>Gravity Support Forums Topic: Support for custom posts</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 06:30:17 +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/support-for-custom-posts" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Support for custom posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts#post-30833</link>
			<pubDate>Sun, 24 Jul 2011 01:48:57 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">30833@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I updated my demo form with that CSS and it works great.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://gravity.chrishajer.com/2011/07/22/where-are-you-from/&#34; rel=&#34;nofollow&#34;&#62;http://gravity.chrishajer.com/2011/07/22/where-are-you-from/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks Kevin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Support for custom posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts#post-30831</link>
			<pubDate>Sun, 24 Jul 2011 00:24:54 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">30831@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You could use a sibling selector with CSS to change the color/font weight, etc. on the label when it's selected. That way you have some feedback with the radio button hidden.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper ul.gfield_radio li input[type=&#38;quot;radio&#38;quot;]:checked+label {
    color: red;
    font-weight: bold;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://bit.ly/qQvCFL&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/qQvCFL&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;That should work in all of the modern browsers without having to use any scripting.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Support for custom posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts#post-30808</link>
			<pubDate>Sat, 23 Jul 2011 12:18:52 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">30808@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Cheers.  Hope that works out for you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>baraka43 on "Support for custom posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts#post-30803</link>
			<pubDate>Sat, 23 Jul 2011 03:08:01 +0000</pubDate>
			<dc:creator>baraka43</dc:creator>
			<guid isPermaLink="false">30803@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Brilliant response, Chris. Thank you very much!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Support for custom posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts#post-30800</link>
			<pubDate>Fri, 22 Jul 2011 23:43:13 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">30800@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@baraka43 - to hide a radio button, you need this CSS:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.gform_wrapper ul.gfield_radio li input[type=&#38;quot;radio&#38;quot;] {
display:none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Add that to your theme's style.css or custom.css if appropriate.  That will hide the radio button. &#60;/p&#62;
&#60;p&#62;I added the images in the field labels like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;img src=&#38;quot;http://gravity.chrishajer.com/wp-content/themes/twentyeleven/images/flags/png/es.png&#38;quot; /&#38;gt; Spain
&#38;lt;img src=&#38;quot;http://gravity.chrishajer.com/wp-content/themes/twentyeleven/images/flags/png/cn.png&#38;quot; /&#38;gt; China
&#38;lt;img src=&#38;quot;http://gravity.chrishajer.com/wp-content/themes/twentyeleven/images/flags/png/us.png&#38;quot; /&#38;gt; United States
&#38;lt;img src=&#38;quot;http://gravity.chrishajer.com/wp-content/themes/twentyeleven/images/flags/png/ir.png&#38;quot; /&#38;gt; Ireland
&#38;lt;img src=&#38;quot;http://gravity.chrishajer.com/wp-content/themes/twentyeleven/images/flags/png/cg.png&#38;quot; /&#38;gt; Congo
&#38;lt;img src=&#38;quot;http://gravity.chrishajer.com/wp-content/themes/twentyeleven/images/flags/png/sn.png&#38;quot; /&#38;gt; Senegal&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;(for usability, you might want to include alt tags.  maybe dimensions too, for layout)&#60;/p&#62;
&#60;p&#62;You're going to want to check the box &#34;enable values&#34; as well, because without it, that full img tag will be the submitted value in your admin, which is probably not what you want.  I entered values like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Spain
China
USA
Ireland
Congo
Senegal&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That's all I needed to do for the setup.&#60;/p&#62;
&#60;p&#62;That gave me a little bit of a usability problem though:&#60;br /&#62;
&#60;a href=&#34;http://gravity.chrishajer.com/2011/07/22/where-are-you-from/&#34; rel=&#34;nofollow&#34;&#62;http://gravity.chrishajer.com/2011/07/22/where-are-you-from/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It's hard to tell which item was &#34;selected&#34; without the feedback of filling in the button.  You might have to add some additional CSS or JavaScript to actually indicate which radio button (flag) was selected.  Your use case may be different.  If you need additional help beyond hiding the radio button, please let us know.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>baraka43 on "Support for custom posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts#post-30799</link>
			<pubDate>Fri, 22 Jul 2011 22:34:37 +0000</pubDate>
			<dc:creator>baraka43</dc:creator>
			<guid isPermaLink="false">30799@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;David - you mentioned, &#34;Gravity Form radio buttons support images for the labels so you can add an image for each radio button and then use a little CSS to hide the radio button itself.&#34; Can you please advise what the &#34;little CSS to hide the radio button itself&#34; is and where I place it? I just want the use images for multiple choice selection without the little radio buttons displayed. Many thanks for a great product.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ebiansyah1402 on "Support for custom posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts#post-26971</link>
			<pubDate>Sat, 04 Jun 2011 06:29:08 +0000</pubDate>
			<dc:creator>ebiansyah1402</dc:creator>
			<guid isPermaLink="false">26971@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That's what I'm talking about!&#60;br /&#62;
This is exactly what I need.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Support for custom posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts#post-26650</link>
			<pubDate>Tue, 31 May 2011 17:12:58 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">26650@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Paul,&#60;/p&#62;
&#60;p&#62;No specific examples come to mind. Gravity Form radio buttons support images for the labels so you can add an image for each radio button and then use a little CSS to hide the radio button itself.&#60;/p&#62;
&#60;p&#62;Gravity Forms does not handle how this information is displayed once the post is created.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pfeatherstone on "Support for custom posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts#post-26649</link>
			<pubDate>Tue, 31 May 2011 17:01:40 +0000</pubDate>
			<dc:creator>pfeatherstone</dc:creator>
			<guid isPermaLink="false">26649@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Dave,&#60;/p&#62;
&#60;p&#62;Good news, I have read lots of good things about gravity.&#60;/p&#62;
&#60;p&#62;I good to go with custom posts in functions.php as already have three set up as part of my custom theme.&#60;/p&#62;
&#60;p&#62;On question two, do you have any examples of the content rating I can take a look at? I specifically need ratings for users to submit as part of the custom form submission and then need to be able to display content based on rank (e.g. top ten ranked mobile phones).&#60;/p&#62;
&#60;p&#62;Thanks again.&#60;/p&#62;
&#60;p&#62;Paul
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Support for custom posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/support-for-custom-posts#post-26641</link>
			<pubDate>Tue, 31 May 2011 15:23:18 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">26641@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Paul,&#60;/p&#62;
&#60;p&#62;The answer to both questions is yes! Woohoo! On the first question... you will need to add a small snippet to your theme's functions.php to create the post as a custom post type. The snippet is freely available in forums for registered users. :)
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
