<?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: Product Pricing not Showing or Adding Up - Cart 66 Integration</title>
		<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration</link>
		<description>Gravity Support Forums Topic: Product Pricing not Showing or Adding Up - Cart 66 Integration</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 10:58: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/topic/product-pricing-not-showing-or-adding-up-cart-66-integration" rel="self" type="application/rss+xml" />

		<item>
			<title>mrez on "Product Pricing not Showing or Adding Up - Cart 66 Integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration#post-29184</link>
			<pubDate>Tue, 05 Jul 2011 21:42:25 +0000</pubDate>
			<dc:creator>mrez</dc:creator>
			<guid isPermaLink="false">29184@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;paulc010, This looks like I need your hack as well....could you please post the entire function after the above changes so I can be sure I've inserted the changes correctly!&#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>paulc010 on "Product Pricing not Showing or Adding Up - Cart 66 Integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration#post-28317</link>
			<pubDate>Wed, 22 Jun 2011 10:00:40 +0000</pubDate>
			<dc:creator>paulc010</dc:creator>
			<guid isPermaLink="false">28317@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There are only 2 files affected. First we need to pass the gravityform Id to the Cart66Product::gravityGetVariationPrices() function. This is called from Cart66ShortcodeManager::gravityFormToCart. In 1.1.3 this function is at line 484 (models/Cart66ShortcodeManager.php) and you need to change line 492 to:&#60;br /&#62;
&#60;code&#62;$options = $product-&#38;gt;gravityGetVariationPrices($entry, $formId);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The we modify the Cart66Product::gravityGetVariationPrices function (model/Cart66Product.php). In reverse order to preserve the line numbers:&#60;/p&#62;
&#60;p&#62;Insert after line 712:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if ($id &#38;amp;&#38;amp; $id == $totalField)
          $options[] = &#38;#39;+$&#38;#39;.$value;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Insert after line 705&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$totalField == false;

    if($formId!=0) {
      $gForm = new Cart66GravityReader($formId);
      if ($gForm) {
        $gFields = $gForm-&#38;gt;getStandardFields();
        foreach ($gFields as $key =&#38;gt; $value)
          if (strtolower($value) == &#38;#39;total&#38;#39;)
            $totalField = $key;
      }
      Cart66Common::log(&#38;#39;[&#38;#39; . basename(__FILE__) . &#38;#39; - line &#38;#39; . __LINE__ . &#38;quot;] Gravity Form:  &#38;quot; . print_r($totalField, true));
    }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And finally modify line 704 to become:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;public function gravityGetVariationPrices($gfEntry, $formId = 0) {&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Basically you avoid using the &#34;+$x.xx&#34; in any form elements as this is what Cart66 uses to indicate a price-affecting field. The above then converts the &#34;total&#34; field into such a price-affecting field and as a result passes the total as computed by Gravity forms as the complete price. Note that the total field must be called &#34;Total&#34;!! If you want it to be called something else, then you need to edit the comparison in the above. Remember also that changing the quantity in the Cart66 &#34;Shopping Cart&#34; multiplies this total.... could be confusing.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>FM on "Product Pricing not Showing or Adding Up - Cart 66 Integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration#post-28291</link>
			<pubDate>Tue, 21 Jun 2011 19:54:35 +0000</pubDate>
			<dc:creator>FM</dc:creator>
			<guid isPermaLink="false">28291@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;paulc010&#60;br /&#62;
If you get this email - can you post your code for the hack if you can- for cart66 and GF. I am using it in a similar manner  and it would be helpful to see what you did.&#60;br /&#62;
Thanks &#60;/p&#62;
&#60;p&#62;FM
&#60;/p&#62;</description>
		</item>
		<item>
			<title>paulc010 on "Product Pricing not Showing or Adding Up - Cart 66 Integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration#post-27829</link>
			<pubDate>Wed, 15 Jun 2011 11:45:22 +0000</pubDate>
			<dc:creator>paulc010</dc:creator>
			<guid isPermaLink="false">27829@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've worked with passing the &#34;Total&#34; to Cart66 with a little bit of hacking, and it works great. In my case I wanted to sell three different priced tickets with a choice of performance all from the same order form. I found that without gravity forms and my hack I couldn't do it and have quantities for each ticket type. Works great, although if anyone was to change the shopping cart quantity it would multiply the entire order (but in a lot of ways that makes sense, plus you can always hide the quantity column on the shopping cart).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Product Pricing not Showing or Adding Up - Cart 66 Integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration#post-24707</link>
			<pubDate>Tue, 03 May 2011 11:17:47 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">24707@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Gravity Forms works fine for order forms if you don't require shopping cart functionality and you are fine with using PayPal Standard as that is currently the only Payment Gateway currently supported and yes people use it solely for this purpose.  It just depends on what your needs are and how advanced your use case is.  If your ordering can be accomplished through the use of a simple order form with PayPal then Gravity Forms should do the job.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>skyyomedia on "Product Pricing not Showing or Adding Up - Cart 66 Integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration#post-24699</link>
			<pubDate>Tue, 03 May 2011 10:57:08 +0000</pubDate>
			<dc:creator>skyyomedia</dc:creator>
			<guid isPermaLink="false">24699@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok, thanks. It appears that they don't support your pricing fields. &#60;/p&#62;
&#60;p&#62;Question: How well does GF work as an ordering system?&#60;/p&#62;
&#60;p&#62;Do any customers use GF solely for this purpose? ( specifically for order forms and management of orders)&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Product Pricing not Showing or Adding Up - Cart 66 Integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration#post-24697</link>
			<pubDate>Tue, 03 May 2011 10:53:09 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">24697@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@skyyomedia See above, we have no involvement in the Cart66 integration.  It's entirely on their end so you will need to get with their support to work out the issue.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>skyyomedia on "Product Pricing not Showing or Adding Up - Cart 66 Integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration#post-24675</link>
			<pubDate>Mon, 02 May 2011 20:05:16 +0000</pubDate>
			<dc:creator>skyyomedia</dc:creator>
			<guid isPermaLink="false">24675@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm having same issue...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mrhoneyfoot on "Product Pricing not Showing or Adding Up - Cart 66 Integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration#post-23763</link>
			<pubDate>Wed, 20 Apr 2011 14:13:53 +0000</pubDate>
			<dc:creator>mrhoneyfoot</dc:creator>
			<guid isPermaLink="false">23763@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Had the same problem with cart66. Here's to hoping they clean up their act.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nina on "Product Pricing not Showing or Adding Up - Cart 66 Integration"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/product-pricing-not-showing-or-adding-up-cart-66-integration#post-23601</link>
			<pubDate>Mon, 18 Apr 2011 15:58:25 +0000</pubDate>
			<dc:creator>Nina</dc:creator>
			<guid isPermaLink="false">23601@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks, I found out they do not support 1.5 as of yet. On another note, is there anywhere online that has some training on writing hooks to dynamically fill in fields that would be easy to relate over to Gravity Forms?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
