<?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: set action=&#34;&#34; Magento integration/Wordpress Page Template</title>
		<link>https://legacy.forums.gravityhelp.com/topic/set-action-magento-integrationwordpress-page-template</link>
		<description>Gravity Support Forums Topic: set action=&quot;&quot; Magento integration/Wordpress Page Template</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 10:25:03 +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/set-action-magento-integrationwordpress-page-template" rel="self" type="application/rss+xml" />

		<item>
			<title>3am on "set action=&#34;&#34; Magento integration/Wordpress Page Template"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/set-action-magento-integrationwordpress-page-template#post-9850</link>
			<pubDate>Tue, 14 Sep 2010 13:42:18 +0000</pubDate>
			<dc:creator>3am</dc:creator>
			<guid isPermaLink="false">9850@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@carl, @administrator&#60;/p&#62;
&#60;p&#62;Would you consider setting the action=&#34;&#34; as a Feature request ? I don't know if it would fit in with your development road plan or even if you think it would be useful, but I would gladly test it for you &#60;/p&#62;
&#60;p&#62;Riaan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>3am on "set action=&#34;&#34; Magento integration/Wordpress Page Template"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/set-action-magento-integrationwordpress-page-template#post-9845</link>
			<pubDate>Tue, 14 Sep 2010 11:43:40 +0000</pubDate>
			<dc:creator>3am</dc:creator>
			<guid isPermaLink="false">9845@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Carl, thank you for your reply, and your time&#60;/p&#62;
&#60;p&#62;That is exactly the solution I used and it works albeit a bit w0nKy&#60;/p&#62;
&#60;p&#62;If the user enters all the fields correctly, it submits the post and adds the data to a new post, however if there is a filed missing, they get directed to the un-styled template page, I have submitted a more detailed report here, can you merge the threads if that is easier for you ? &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://forum.gravityhelp.com/topic/gravity-form-embed-in-post-or-page-template-submit-not-working#post-9843&#34; rel=&#34;nofollow&#34;&#62;http://forum.gravityhelp.com/topic/gravity-form-embed-in-post-or-page-template-submit-not-working#post-9843&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks again, Carl&#60;/p&#62;
&#60;p&#62;Riaan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "set action=&#34;&#34; Magento integration/Wordpress Page Template"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/set-action-magento-integrationwordpress-page-template#post-9621</link>
			<pubDate>Thu, 09 Sep 2010 14:24:56 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">9621@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm not familiar with the Magento/WordPress integration so I can't guarantee this will work... but you can use a filter to set the form action.  It uses the gform_form_tag filter.&#60;/p&#62;
&#60;p&#62;Here is an example:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
add_filter(&#38;quot;gform_form_tag&#38;quot;, &#38;quot;form_tag&#38;quot;, 10, 2);
function form_tag($form_tag, $form){
$form_tag = preg_replace(&#38;quot;&#124;action=&#38;#39;(.*?)&#38;#39;&#124;&#38;quot;, &#38;quot;action=&#38;#39;custom_handler.php&#38;#39;&#38;quot;, $form_tag);
return $form_tag;
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The above code changes the form action to custom_handler.php.  In your case you would change the action to point to the page where it should be able to process.&#60;/p&#62;
&#60;p&#62;No guarantees will this work, the Magento integration seems kinda cumbersome in it's implementation using curl like that.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>3am on "set action=&#34;&#34; Magento integration/Wordpress Page Template"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/set-action-magento-integrationwordpress-page-template#post-9620</link>
			<pubDate>Thu, 09 Sep 2010 14:22:43 +0000</pubDate>
			<dc:creator>3am</dc:creator>
			<guid isPermaLink="false">9620@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;lol, seem to have solved it, &#60;/p&#62;
&#60;p&#62;in wordpress, wp-content/themes/default/functions.php&#60;/p&#62;
&#60;p&#62;add:&#60;/p&#62;
&#60;pre&#62;
//Gravit Forms .. replace Action=&#34;&#34; for Event submissions page
add_filter(&#34;gform_form_tag&#34;, &#34;form_tag&#34;, 1, 2);
function form_tag($form_tag, $form){
$form_tag = preg_replace(&#34;&#124;action='(.*?)'&#124;&#34;, &#34;action='/blog/wp-submit/'&#34;, $form_tag);
return $form_tag;
}
&#60;/pre&#62;
&#60;p&#62;1 is your form ID
&#60;/p&#62;</description>
		</item>
		<item>
			<title>3am on "set action=&#34;&#34; Magento integration/Wordpress Page Template"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/set-action-magento-integrationwordpress-page-template#post-9617</link>
			<pubDate>Thu, 09 Sep 2010 12:52:23 +0000</pubDate>
			<dc:creator>3am</dc:creator>
			<guid isPermaLink="false">9617@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, first of, great contribution guys, really excellent work well done ! &#60;/p&#62;
&#60;p&#62;But I am having a bit of a problem ? I made a Wordpress Page Template, &#60;a href=&#34;http://www.3am.co.za/blog/wp-submit/&#34; rel=&#34;nofollow&#34;&#62;http://www.3am.co.za/blog/wp-submit/&#60;/a&#62; and the form works, now I am using curl to get content from Wordpress into Magento and now my form does not submit &#60;a href=&#34;http://www.3am.co.za/parties/submit-your-party&#34; rel=&#34;nofollow&#34;&#62;http://www.3am.co.za/parties/submit-your-party&#60;/a&#62; ? If I can set the action, I'm almost sure it will work, perhaps you have a better suggestion ? &#60;/p&#62;
&#60;p&#62;Hope you can help me, I'm itching to see it work :)&#60;br /&#62;
Thanks in advance,&#60;br /&#62;
Riaan
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
