<?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: Javascript conflict with WooCommerce</title>
		<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce</link>
		<description>Gravity Support Forums Topic: Javascript conflict with WooCommerce</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 07:53:25 +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/javascript-conflict-with-woocommerce" rel="self" type="application/rss+xml" />

		<item>
			<title>Alex Cancado on "Javascript conflict with WooCommerce"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce#post-143549</link>
			<pubDate>Wed, 06 Feb 2013 15:03:04 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">143549@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@pronamic,&#60;br /&#62;
Thanks for the heads up and for all the troubleshooting. Your change makes sense and will be included in the next PayPal Add-On release.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Javascript conflict with WooCommerce"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce#post-142453</link>
			<pubDate>Tue, 05 Feb 2013 08:50:52 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">142453@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'll send your comments to David to see if he has anything to add.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pronamic on "Javascript conflict with WooCommerce"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce#post-142326</link>
			<pubDate>Tue, 05 Feb 2013 06:05:46 +0000</pubDate>
			<dc:creator>pronamic</dc:creator>
			<guid isPermaLink="false">142326@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We can also not reproduce this problem on an other environemt, but i have managed to get some more information. If i disable the PayPal Add-On we see the following changes on the admin page:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;-&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;http://www.domainname.tld/wp-content/plugins/gravityforms/js/jquery.qtip-1.0.0-rc2.min.js?ver=1.6.11&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;
-&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;http://www.domainname.tld/wp-content/plugins/gravityforms/js/qtip_init.js?ver=1.6.11&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;
-&#38;lt;link rel=&#38;#39;stylesheet&#38;#39; id=&#38;#39;gf_tooltip-css&#38;#39;  href=&#38;#39;http://www.domainname.tld/wp-content/plugins/gravityforms/css/tooltip.css?ver=1.6.11&#38;#39; type=&#38;#39;text/css&#38;#39; media=&#38;#39;all&#38;#39; /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also if i comment the following line in te PayPal Add-On this problem is fixed:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//loading Gravity Forms tooltips
require_once(GFCommon::get_base_path() . &#38;quot;/tooltips.php&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If you just can make sure the tooltip scripts are only loaded on the Gravity Forms and PayPal Add-On pages it would be fixed.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//loading Gravity Forms tooltips
require_once(GFCommon::get_base_path() . &#38;quot;/tooltips.php&#38;quot;);
add_filter(&#38;#39;gform_tooltips&#38;#39;, array(&#38;#39;GFPayPal&#38;#39;, &#38;#39;tooltips&#38;#39;));

if(self::is_paypal_page()){

    //enqueueing sack for AJAX requests
    wp_enqueue_script(array(&#38;quot;sack&#38;quot;));

    //loading data lib
    require_once(self::get_base_path() . &#38;quot;/data.php&#38;quot;);

    //loading upgrade lib
    if(!class_exists(&#38;quot;RGPayPalUpgrade&#38;quot;))
        require_once(&#38;quot;plugin-upgrade.php&#38;quot;);

    //runs the setup when version changes
    self::setup();

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I have changed this to:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if(self::is_paypal_page()){

    //loading Gravity Forms tooltips
    require_once(GFCommon::get_base_path() . &#38;quot;/tooltips.php&#38;quot;);
    add_filter(&#38;#39;gform_tooltips&#38;#39;, array(&#38;#39;GFPayPal&#38;#39;, &#38;#39;tooltips&#38;#39;));

    //enqueueing sack for AJAX requests
    wp_enqueue_script(array(&#38;quot;sack&#38;quot;));

    //loading data lib
    require_once(self::get_base_path() . &#38;quot;/data.php&#38;quot;);

    //loading upgrade lib
    if(!class_exists(&#38;quot;RGPayPalUpgrade&#38;quot;))
        require_once(&#38;quot;plugin-upgrade.php&#38;quot;);

    //runs the setup when version changes
    self::setup();

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This seems to fix the issue....
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Javascript conflict with WooCommerce"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce#post-101823</link>
			<pubDate>Wed, 12 Dec 2012 20:13:27 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">101823@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi pronamic,&#60;/p&#62;
&#60;p&#62;I am unable to recreate this issue. If you can recreate this issue on a site where you can provide us access, we'll be happy to dig in. Send the login details to us via our &#60;a href=&#34;&#34; rel=&#34;nofollow&#34;&#62;Contact Us&#60;/a&#62; form (or Priority Support if you have access).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Javascript conflict with WooCommerce"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce#post-101805</link>
			<pubDate>Wed, 12 Dec 2012 19:17:48 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">101805@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I will bring this to the attention of the development team.  Gravity Forms does not normally outputt its own scripts on other plugin's management pages.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pronamic on "Javascript conflict with WooCommerce"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce#post-101533</link>
			<pubDate>Wed, 12 Dec 2012 04:09:01 +0000</pubDate>
			<dc:creator>pronamic</dc:creator>
			<guid isPermaLink="false">101533@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;blockquote&#62;&#60;p&#62;In that last block of scripts, are those present in the source of the Woocommerce reports page?&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Yes, if i comment the following line (#4) in plugins\gravityforms\tooltips.php i no longer see the error:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;// add_action(&#38;quot;admin_print_scripts&#38;quot;, &#38;#39;print_tooltip_scripts&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I can't find out why this problem only occures when the PayPal Add-On is enabled.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Javascript conflict with WooCommerce"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce#post-100933</link>
			<pubDate>Mon, 10 Dec 2012 14:20:20 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">100933@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;In that last block of scripts, are those present in the source of the Woocommerce reports page?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pronamic on "Javascript conflict with WooCommerce"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce#post-100048</link>
			<pubDate>Fri, 07 Dec 2012 11:38:17 +0000</pubDate>
			<dc:creator>pronamic</dc:creator>
			<guid isPermaLink="false">100048@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We can't provide an link to an site with this problem. You can however easily reproduce this by installing the WooCommerce (&#60;a href=&#34;http://wordpress.org/extend/plugins/woocommerce/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/woocommerce/&#60;/a&#62;) plugin. If we enabled the Gravity Forms PayPall Add-On we see the following error in Firebug on the WooCommerce reports page (/wp-admin/admin.php?page=woocommerce_reports):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;TypeError: e is undefined
/wp-content/plugins/woocommerce/assets/js/admin/jquery.flot.resize.min.js?ver=1.0
Line 1&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;We are not sure why this error occures when the PayPall Add-On is activated. Maybe the problem can be solved by not adding the following scripts to other pages then Gravity Forms:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;http://rt.beta.pronamic.nl/wp-content/plugins/gravityforms/js/jquery.qtip-1.0.0-rc2.min.js?ver=1.6.9&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;http://rt.beta.pronamic.nl/wp-content/plugins/gravityforms/js/qtip_init.js?ver=1.6.9&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;link rel=&#38;#39;stylesheet&#38;#39; id=&#38;#39;gf_tooltip-css&#38;#39;  href=&#38;#39;http://rt.beta.pronamic.nl/wp-content/plugins/gravityforms/css/tooltip.css?ver=1.6.9&#38;#39; type=&#38;#39;text/css&#38;#39; media=&#38;#39;all&#38;#39; /&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Javascript conflict with WooCommerce"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce#post-99568</link>
			<pubDate>Thu, 06 Dec 2012 08:15:06 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">99568@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Please provide a link to the site where we can see this conflict. Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pronamic on "Javascript conflict with WooCommerce"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/javascript-conflict-with-woocommerce#post-98633</link>
			<pubDate>Tue, 04 Dec 2012 04:15:49 +0000</pubDate>
			<dc:creator>pronamic</dc:creator>
			<guid isPermaLink="false">98633@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm getting an weird javascript error on the WooCommerce Reports section:&#60;/p&#62;
&#60;p&#62;'Uncaught TypeError: Cannot set property 'w' of undefined'&#60;/p&#62;
&#60;p&#62;It seems there is a conflict with the Gravity Forms Paypal Add-on. With version 1.3.1 it seems to work al fine... These issues came with the latest update (1.5). Can this be a conflict of using different versions of jquery.flot? If so, are these files loaded the right way?&#60;/p&#62;
&#60;p&#62;Does anyone got an idea how to fix this?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
