<?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: Possible to hide prices?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/possible-to-hide-prices</link>
		<description>Gravity Support Forums Topic: Possible to hide prices?</description>
		<language>en-US</language>
		<pubDate>Sun, 12 Apr 2026 04:37:26 +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/possible-to-hide-prices" rel="self" type="application/rss+xml" />

		<item>
			<title>Rob Harrell on "Possible to hide prices?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/possible-to-hide-prices#post-42861</link>
			<pubDate>Fri, 02 Dec 2011 10:00:04 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">42861@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yeah it did, just didn't hide the label - the &#34;price&#34; is indeed hidden. :)&#60;/p&#62;
&#60;p&#62;Replace with this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
span#input_3_1, li#field_3_1 span.ginput_product_price_label {
display: none;
}
li#field_3_1 span.ginput_quantity_label {
margin: 0;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>jim on "Possible to hide prices?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/possible-to-hide-prices#post-42860</link>
			<pubDate>Fri, 02 Dec 2011 09:29:24 +0000</pubDate>
			<dc:creator>jim</dc:creator>
			<guid isPermaLink="false">42860@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks but that didnt work.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://mvfi.com/?page_id=130&#34; rel=&#34;nofollow&#34;&#62;http://mvfi.com/?page_id=130&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Possible to hide prices?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/possible-to-hide-prices#post-42787</link>
			<pubDate>Thu, 01 Dec 2011 17:37:52 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">42787@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You could place this in your theme's style sheet:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
span#input_3_1 {
display: none;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>jim on "Possible to hide prices?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/possible-to-hide-prices#post-42759</link>
			<pubDate>Thu, 01 Dec 2011 16:38:39 +0000</pubDate>
			<dc:creator>jim</dc:creator>
			<guid isPermaLink="false">42759@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you point me to where to hide it and how to hide it in css. &#60;/p&#62;
&#60;p&#62;I firebugged this...&#60;/p&#62;
&#60;p&#62;&#38;lt;span id=&#34;input_3_1&#34; class=&#34;ginput_product_price&#34;&#38;gt;$0.00&#38;lt;/span&#38;gt;&#60;/p&#62;
&#60;p&#62;How do I hide that?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Possible to hide prices?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/possible-to-hide-prices#post-24702</link>
			<pubDate>Tue, 03 May 2011 11:06:18 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">24702@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The only way to do this right now would be to use CSS.  You would target the price elements and use CSS to set them to display: none;.  You would add the custom CSS to your themes stylesheet.  You'd have to view source on the form and see what html elements are used to wrap the price you want to hide, target that element and style it to hide it.  That is currently the only way to do this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ssnipes on "Possible to hide prices?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/possible-to-hide-prices#post-24683</link>
			<pubDate>Tue, 03 May 2011 02:10:32 +0000</pubDate>
			<dc:creator>ssnipes</dc:creator>
			<guid isPermaLink="false">24683@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, the form I'm building is not a traditional order form. Rather, it calculates a total offer price of what we are willing to pay the customer for their product. This offer price is based on the customer's answers to questions about the condition of the product. I am attaching price values to each of these answers -- for instance, if the computer the customer is trying to sell to us has a big dent in it, I will deduct $10.00 from the initial starting price. &#60;/p&#62;
&#60;p&#62;I'm trying to find a way to hide these price fields from the customer -- if this is even possible. Obviously, I don't want the customer to realize that if they can get more for their product if they check a different box until they reach the total offer price at the end.&#60;/p&#62;
&#60;p&#62;Please let me know if there is something in the code that I can tweak to hide the pricing fields; I'm currently looking in form_display.php but I'm not finding anything (PHP newbie as well).&#60;/p&#62;
&#60;p&#62;Thanks very much!!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
