<?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 User Favorites: antonsamper</title>
		<link><a href='https://legacy.forums.gravityhelp.com/profile/antonsamper'>antonsamper</a></link>
		<description>Gravity Support Forums User Favorites: antonsamper</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 04:35:45 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>faczuo on "Integrating Gravity Forms with Shopp plugin"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/integrating-gravity-forms-with-shopp-plugin#post-34122</link>
			<pubDate>Thu, 01 Sep 2011 07:01:34 +0000</pubDate>
			<dc:creator>faczuo</dc:creator>
			<guid isPermaLink="false">34122@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Could you describe what you're doing here in more detail? I'm interested in doing the exact same thing, but unsure what to do with the script mentioned above. Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "Integrating Gravity Forms with Shopp plugin"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/integrating-gravity-forms-with-shopp-plugin#post-5244</link>
			<pubDate>Tue, 04 May 2010 20:53:32 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">5244@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I think this will do the trick. You just have to make sure to do the validation before posting to the form (assuming you have required fields, etc.. in your form). Otherwise you will think the form was processed, but it actually was not.&#60;br /&#62;
Also, keep in mind that the 1 in &#34;is_submit_1&#34; refers to the form id. So if your form id is 5, you should use &#34;is_submit_5&#34; instead.&#60;/p&#62;
&#60;p&#62;Good luck!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>antonsamper on "Integrating Gravity Forms with Shopp plugin"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/integrating-gravity-forms-with-shopp-plugin#post-5239</link>
			<pubDate>Tue, 04 May 2010 18:24:49 +0000</pubDate>
			<dc:creator>antonsamper</dc:creator>
			<guid isPermaLink="false">5239@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I didnt get a reply from the Shopp guys however i've tested the following script and it seems to work ok.  Can you see any obvious problems with it?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$url = &#38;quot;__WORDPRESS PAGE/POST URL__&#38;quot;;

$post_data = array (
	&#38;quot;is_submit_1&#38;quot; =&#38;gt; &#38;quot;1&#38;quot;,
	&#38;quot;input_X&#38;quot; =&#38;gt; &#38;quot;name&#38;quot;,
	&#38;quot;input_X&#38;quot; =&#38;gt; &#38;quot;email@email.com&#38;quot;
);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// we are doing a POST request
curl_setopt($ch, CURLOPT_POST, 1);
// adding the post variables to the request
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);

$output = curl_exec($ch);

curl_close($ch);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I found that the URL had to be different from the ones that calls it but this isnt a problem for my situation.&#60;br /&#62;
In the real situation, I would replace the post_data object with the values submitted on the checkout process.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>antonsamper on "Integrating Gravity Forms with Shopp plugin"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/integrating-gravity-forms-with-shopp-plugin#post-5198</link>
			<pubDate>Mon, 03 May 2010 16:07:13 +0000</pubDate>
			<dc:creator>antonsamper</dc:creator>
			<guid isPermaLink="false">5198@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yep, thats correct.  I'll try and send them an email and see what they say. I'll post back any feedback i receive.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "Integrating Gravity Forms with Shopp plugin"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/integrating-gravity-forms-with-shopp-plugin#post-5192</link>
			<pubDate>Mon, 03 May 2010 15:14:14 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">5192@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Anton,&#60;br /&#62;
So you would like to use a Gravity Form (with the addons) during Shop's checkout process? I imagine that being a little tricky if at all possible. However, this question would be better answered by the Shop folks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>antonsamper on "Integrating Gravity Forms with Shopp plugin"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/integrating-gravity-forms-with-shopp-plugin#post-5188</link>
			<pubDate>Mon, 03 May 2010 14:32:00 +0000</pubDate>
			<dc:creator>antonsamper</dc:creator>
			<guid isPermaLink="false">5188@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;Im not sure if this is the right place for this question  but as i cant seem to post anything of the Shopp forum without actually purchasing Shopp then i hope someone here can help.&#60;/p&#62;
&#60;p&#62;I want to setup an e-commerce website and i've been looking around many sites and comparing what each of them offer.  Shopp seems to be the most flexible but before i buy, i thought i would ask if anyone had successfully and easily integrated Gravity Forms with Shopp?&#60;/p&#62;
&#60;p&#62;What i would like to do is use the Mailchimp and Freshbook add-ons to keep tracks of orders and customers.&#60;/p&#62;
&#60;p&#62;Has anyone attempted this?&#60;/p&#62;
&#60;p&#62;Anton
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
