<?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: Integrate CRM Software - Leadmaster?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/integrate-crm-software-leadmaster</link>
		<description>Gravity Support Forums Topic: Integrate CRM Software - Leadmaster?</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 10:53:56 +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/integrate-crm-software-leadmaster" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Integrate CRM Software - Leadmaster?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/integrate-crm-software-leadmaster#post-78820</link>
			<pubDate>Thu, 04 Oct 2012 00:30:16 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">78820@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Rather than trying to modify the form, with a 3rd party service it's sometimes easier to use the gform_after_submission hook to send all your collected data to your third party service via URL or API.  &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>draney on "Integrate CRM Software - Leadmaster?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/integrate-crm-software-leadmaster#post-78798</link>
			<pubDate>Wed, 03 Oct 2012 21:12:44 +0000</pubDate>
			<dc:creator>draney</dc:creator>
			<guid isPermaLink="false">78798@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Since GForms generates the entire form, how would you add the hidden form fields to your form?&#60;/p&#62;
&#60;p&#62;I have tried following these instructions &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_field_input&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_field_input&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;First I added 4 hidden fields to my form and used the code example to insert a customized hidden field in place of one of the GForm hidden fields. I was successful replacing the first field, but I am having trouble extending the code sample to add multiple hidden fields. Here is the filter code I tried in my functions file:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_filter(&#38;quot;gform_field_input&#38;quot;, &#38;quot;company&#38;quot;, 10, 5);
function company($input, $field, $value, $lead_id, $form_id)
{
	if ($form_id == 1 &#38;amp;&#38;amp; $field[&#38;quot;id&#38;quot;] == 13)
	{
		$input = &#38;#39;&#38;lt;input type=&#38;quot;hidden&#38;quot; name=&#38;quot;lm_CompanyID&#38;quot; value=&#38;quot;7327&#38;quot;&#38;gt;&#38;#39;;
		return $input;
	}
	if ($form_id == 1 &#38;amp;&#38;amp; $field[&#38;quot;id&#38;quot;] == 14)
	{
		$input = &#38;#39;&#38;lt;input type=&#38;#39;hidden&#38;#39; name=&#38;quot;lm_FormID&#38;quot; value=&#38;quot;261&#38;quot;&#38;gt;&#38;#39;;
		return $input;
	}
	if ($form_id == 1 &#38;amp;&#38;amp; $field[&#38;quot;id&#38;quot;] == 15)
	{
		$input = &#38;#39;&#38;lt;input type=&#38;#39;hidden&#38;#39; name=&#38;quot;lm_FormKey&#38;quot; value=&#38;quot;&#38;quot;&#38;gt;&#38;#39;;
		return $input;
	}
	if ($form_id == 1 &#38;amp;&#38;amp; $field[&#38;quot;id&#38;quot;] == 16)
	{
		$input = &#38;#39;&#38;lt;input type=&#38;#39;hidden&#38;#39; name=&#38;quot;lm_FormResponsePage&#38;quot; value=&#38;quot;http://www.mysite.com/&#38;quot;&#38;gt;&#38;#39;;
		return $input;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This broke WordPress. Can you help me make this work?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Integrate CRM Software - Leadmaster?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/integrate-crm-software-leadmaster#post-63703</link>
			<pubDate>Tue, 26 Jun 2012 20:01:55 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">63703@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Everything but the change to the form element could easily be done. I am sure there is a way to cheat that as well, but I don't know it off the top of my head. I would have to defer that to one of our JavaScript experts. &#60;/p&#62;
&#60;p&#62;The other changes you want would just be in your WordPress theme. You could wrap them in PHP to only show on your form pages, or create a custom template for pages with forms to have those elements.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JetWeb on "Integrate CRM Software - Leadmaster?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/integrate-crm-software-leadmaster#post-63694</link>
			<pubDate>Tue, 26 Jun 2012 19:22:35 +0000</pubDate>
			<dc:creator>JetWeb</dc:creator>
			<guid isPermaLink="false">63694@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible to integrate our CRM software for Leadmaster ( &#60;a href=&#34;http://leadmaster.com/&#34; rel=&#34;nofollow&#34;&#62;http://leadmaster.com/&#60;/a&#62; ) ?  We would need to be able to add custom code such as this:&#60;/p&#62;
&#60;p&#62;Add the following text following the &#38;lt;head&#38;gt; element:&#60;br /&#62;
&#38;lt;script type=&#34;text/javascript&#34; src=&#34;http://www.logincrm.com/login/lm_wfi.js&#34;&#38;gt;&#38;lt;/script&#38;gt;&#60;br /&#62;
Add the following text to the &#38;lt;body&#38;gt; element:&#60;br /&#62;
onLoad=&#34;lm_InitWebForm()&#34;&#60;br /&#62;
Add the following text to the &#38;lt;form&#38;gt; element:&#60;br /&#62;
onSubmit=&#34;return lm_SubmitWebForm()&#34;&#60;br /&#62;
Add the following text immediately following the &#38;lt;form&#38;gt; element:&#60;br /&#62;
&#38;lt;input type='hidden' name=&#34;lm_CompanyID&#34; value=&#34;xxxx&#34;&#38;gt;&#60;br /&#62;
&#38;lt;input type='hidden' name=&#34;lm_FormID&#34; value=&#34;xx&#34;&#38;gt;&#60;br /&#62;
&#38;lt;input type='hidden' name=&#34;lm_FormKey&#34; value=&#34;&#34;&#38;gt;&#60;br /&#62;
&#38;lt;input type='hidden' name=&#34;lm_FormResponsePage&#34; value=&#34;http://www.website.com/thank-you/&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;Is this easy to do with Gravity forms?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
