<?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: remove price display on option field</title>
		<link>https://legacy.forums.gravityhelp.com/topic/remove-price-display-on-option-field</link>
		<description>Gravity Support Forums Topic: remove price display on option field</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 15:30:46 +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/remove-price-display-on-option-field" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "remove price display on option field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/remove-price-display-on-option-field#post-72070</link>
			<pubDate>Wed, 22 Aug 2012 08:27:51 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">72070@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you're using a child theme, don't modify the parent theme at all.  If there is no header.php in your child theme, copy the header.php from the parent, and put it in the child folder.  With no changes to it, it will function exactly as it did before, even though it's using a different header.php file automatically.&#60;/p&#62;
&#60;p&#62;You can insert that code into the header.php right at line 22 in the paste above.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ewan25 on "remove price display on option field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/remove-price-display-on-option-field#post-72050</link>
			<pubDate>Wed, 22 Aug 2012 05:54:22 +0000</pubDate>
			<dc:creator>Ewan25</dc:creator>
			<guid isPermaLink="false">72050@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Right ok &#60;/p&#62;
&#60;p&#62;I have opened my header.php file&#60;/p&#62;
&#60;p&#62;Where would I need to place the code?  &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;!DOCTYPE html PUBLIC &#38;quot;-//W3C//DTD XHTML 1.0 Strict//EN&#38;quot; &#38;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#38;quot;&#38;gt;
&#38;lt;html xmlns=&#38;quot;http://www.w3.org/1999/xhtml&#38;quot;&#38;gt;
&#38;lt;head&#38;gt;
    &#38;lt;meta http-equiv=&#38;quot;Content-Type&#38;quot; content=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;html_type&#38;#39;); ?&#38;gt;; charset=&#38;lt;?php bloginfo(&#38;#39;charset&#38;#39;); ?&#38;gt;&#38;quot; /&#38;gt;

	&#38;lt;title&#38;gt;&#38;lt;?php wp_title() ?&#38;gt;&#38;lt;/title&#38;gt;

    &#38;lt;link rel=&#38;quot;stylesheet&#38;quot; type=&#38;quot;text/css&#38;quot; href=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;stylesheet_url&#38;#39;); ?&#38;gt;&#38;quot; media=&#38;quot;screen&#38;quot; /&#38;gt;
    &#38;lt;link rel=&#38;quot;alternate&#38;quot; type=&#38;quot;application/rss+xml&#38;quot; title=&#38;quot;RSS 2.0&#38;quot; href=&#38;quot;&#38;lt;?php if ( get_option(PREFIX.&#38;#39;_feedburner_url&#38;#39;) &#38;lt;&#38;gt; &#38;quot;&#38;quot; ) { echo get_option(PREFIX.&#38;#39;_feedburner_url&#38;#39;); } else { echo get_bloginfo_rss(&#38;#39;rss2_url&#38;#39;); } ?&#38;gt;&#38;quot; /&#38;gt;
    &#38;lt;link rel=&#38;quot;pingback&#38;quot; href=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;pingback_url&#38;#39;); ?&#38;gt;&#38;quot; /&#38;gt;

    &#38;lt;?php $template_directory = get_bloginfo(&#38;#39;template_directory&#38;#39;); ?&#38;gt;
    &#38;lt;?php if ( is_singular() ) wp_enqueue_script( &#38;#39;comment-reply&#38;#39; );  ?&#38;gt;
    &#38;lt;link type=&#38;quot;text/css&#38;quot; rel=&#38;quot;stylesheet&#38;quot; href=&#38;quot;&#38;lt;?php echo $template_directory ?&#38;gt;/css/color_wine.css&#38;quot; /&#38;gt;
    &#38;lt;?php wp_head(); ?&#38;gt;

   &#38;lt;?php include( THEME_MODULES . &#38;#39;/count_slider_image.php&#38;#39; ); ?&#38;gt;
	&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
		var slideTimeout    = &#38;lt;?php echo (get_option(PREFIX.&#38;#39;_homepage_slider_timeout&#38;#39;)*1000); ?&#38;gt;;
		var maxslidernumber = &#38;lt;?php echo $count; ?&#38;gt;
    &#38;lt;/script&#38;gt;

&#38;lt;/head&#38;gt;

&#38;lt;?php
	global $catID;
	$category = @get_the_category();
	$catID = array();
	foreach ( $category as $key =&#38;gt; $val ) $catID[] = $category[$key]-&#38;gt;cat_ID;
?&#38;gt;
&#38;lt;body &#38;lt;?php body_class() ?&#38;gt;&#38;gt;

    &#38;lt;div class=&#38;quot;header&#38;quot;&#38;gt;
    	&#38;lt;div class=&#38;quot;header_content&#38;quot;&#38;gt;
        	&#38;lt;a href=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;url&#38;#39;); ?&#38;gt;&#38;quot; title=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;description&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;img class=&#38;quot;logo png&#38;quot; src=&#38;quot;&#38;lt;?php if ( get_option(PREFIX.&#38;#39;_logo&#38;#39;) &#38;lt;&#38;gt; &#38;quot;&#38;quot; ) { echo get_option(PREFIX.&#38;#39;_logo&#38;#39;); } else { echo $template_directory ?&#38;gt;/images/logo.png&#38;lt;?php } ?&#38;gt;&#38;quot; alt=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;name&#38;#39;); ?&#38;gt;&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;
            &#38;lt;!-- .logo --&#38;gt;  

			&#38;lt;?php include( THEME_MODULES . &#38;#39;/page-nav.php&#38;#39; ); ?&#38;gt;
        	&#38;lt;!-- .main_menu --&#38;gt;  

        &#38;lt;/div&#38;gt;
        &#38;lt;!-- .header_content --&#38;gt;
    &#38;lt;/div&#38;gt;
	&#38;lt;!-- .HEADER --&#38;gt;

	&#38;lt;?php include( THEME_MODULES . &#38;#39;/featured.php&#38;#39; ); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also my wordpress theme has a parent and child theme setup ... however this is just for style css stuff I believe? for functionality changes like this I would need to add them to the parent theme... correct?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "remove price display on option field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/remove-price-display-on-option-field#post-70874</link>
			<pubDate>Mon, 13 Aug 2012 12:55:20 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">70874@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;In your theme's header.php file you just need to add the code listed in the example entitled: &#34;The following example disables the option pricing, displaying only the option label.&#34;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ewan25 on "remove price display on option field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/remove-price-display-on-option-field#post-70802</link>
			<pubDate>Mon, 13 Aug 2012 07:09:23 +0000</pubDate>
			<dc:creator>Ewan25</dc:creator>
			<guid isPermaLink="false">70802@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;Thanks for your post &#60;/p&#62;
&#60;p&#62;sorry for the late reply &#60;/p&#62;
&#60;p&#62;I'm still slightly confused as to what I need to do.. sorry :)&#60;/p&#62;
&#60;p&#62;Where can you edit the gravity forms plugin ...can you do this within wordpress or on your server?&#60;/p&#62;
&#60;p&#62;thanks for your time
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "remove price display on option field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/remove-price-display-on-option-field#post-66699</link>
			<pubDate>Tue, 17 Jul 2012 14:55:48 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">66699@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You wouldn't replace anything, you would just need to place one of the examples into your site appropriately. Take a look at this:&#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;
&#60;p&#62;Let me know if you get stuck.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ewan25 on "remove price display on option field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/remove-price-display-on-option-field#post-66698</link>
			<pubDate>Tue, 17 Jul 2012 14:50:16 +0000</pubDate>
			<dc:creator>Ewan25</dc:creator>
			<guid isPermaLink="false">66698@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;HI Rob,&#60;/p&#62;
&#60;p&#62;ah ok this looks like it will solve it!&#60;/p&#62;
&#60;p&#62;cheers&#60;/p&#62;
&#60;p&#62;Sorry to sound stupid but what exactly would I need to replace with that code?&#60;/p&#62;
&#60;p&#62;I dont want to mess it up :)&#60;/p&#62;
&#60;p&#62;thanks for your time&#60;/p&#62;
&#60;p&#62;Ewan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "remove price display on option field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/remove-price-display-on-option-field#post-66388</link>
			<pubDate>Mon, 16 Jul 2012 07:38:25 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">66388@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for renewing, we appreciate it! Take a look here:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_format_option_label&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_format_option_label&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ewan25 on "remove price display on option field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/remove-price-display-on-option-field#post-66382</link>
			<pubDate>Mon, 16 Jul 2012 06:54:45 +0000</pubDate>
			<dc:creator>Ewan25</dc:creator>
			<guid isPermaLink="false">66382@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;I have renewed my licence for the year so I thought I would try and sort out one problem which really bugs me :) &#60;/p&#62;
&#60;p&#62;Basically I was wandering if it's possible to remove the small price displayed next to each option on the drop down box.&#60;/p&#62;
&#60;p&#62;As you can see when you click on the packaging option field on the following page: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://eha-duplication.co.uk/cd-duplication/&#34; rel=&#34;nofollow&#34;&#62;http://eha-duplication.co.uk/cd-duplication/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Spindle tub&#60;br /&#62;
PVC Wallet +£0.10&#60;br /&#62;
Self Adhesive PVC Wallet +£0.12 &#60;/p&#62;
&#60;p&#62;How can I get rid of the little price which displays on the right?&#60;/p&#62;
&#60;p&#62;any help would be much appreciated! :)
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
