<?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: Separate Billing/Shipping Fields</title>
		<link>https://legacy.forums.gravityhelp.com/topic/separate-billingshipping-fields</link>
		<description>Gravity Support Forums Topic: Separate Billing/Shipping Fields</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 02:56: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/separate-billingshipping-fields" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Separate Billing/Shipping Fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/separate-billingshipping-fields#post-146295</link>
			<pubDate>Tue, 12 Feb 2013 14:44:36 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">146295@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Assuming that those field IDs are correct (all your rgpost values) then those will assign the entered data to the $form_data array.&#60;/p&#62;
&#60;p&#62;However, in your second part (# ADD DATA TO TRANSACTION OBJECT) you are assigning all the shipping values to the description which is sent to Authorize.net.  If that's what you're looking to do, that will work fine.  If you want to actually set the shipping address at Authorize.net, please let us know.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>synecticsmedia on "Separate Billing/Shipping Fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/separate-billingshipping-fields#post-146272</link>
			<pubDate>Tue, 12 Feb 2013 13:27:09 +0000</pubDate>
			<dc:creator>synecticsmedia</dc:creator>
			<guid isPermaLink="false">146272@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hmmm, thank you for the post.&#60;/p&#62;
&#60;p&#62;However, I'm more of a front end developer, so I'm trying to grasp exactly what I need to put into the functions.php document.&#60;/p&#62;
&#60;p&#62;Using the AIM array values, for Authorize to record the shipping info, I would use the following?&#60;/p&#62;
&#60;p&#62;&#34;ship_to_address&#34;,&#60;br /&#62;
&#34;ship_to_city&#34;,&#60;br /&#62;
&#34;ship_to_state&#34;&#60;br /&#62;
,&#34;ship_to_zip&#34;,&#60;/p&#62;
&#60;p&#62;Example:&#60;/p&#62;
&#60;p&#62; # GET DATA FROM FORM INPUT&#60;br /&#62;
        $form_data[&#34;ship_to_address&#34;] = rgpost(&#34;input_2_1&#34;);&#60;br /&#62;
        $form_data[&#34;ship_to_city&#34;] = rgpost(&#34;input_2_2&#34;);&#60;br /&#62;
        $form_data[&#34;ship_to_state&#34;] = rgpost(&#34;input_2_3&#34;);&#60;br /&#62;
        $form_data[&#34;ship_to_zip&#34;] = rgpost(&#34;input_2_4&#34;);&#60;/p&#62;
&#60;p&#62;# ADD DATA TO TRANSACTION OBJECT&#60;br /&#62;
       $transaction-&#38;gt;description       = 'Shipping Address: ' . $form_data[&#34;ship_to_address&#34;];&#60;br /&#62;
       $transaction-&#38;gt;description       = 'City: ' . $form_data[&#34;ship_to_city&#34;];&#60;br /&#62;
       $transaction-&#38;gt;description       = 'State: ' . $form_data[&#34;ship_to_state&#34;];&#60;br /&#62;
       $transaction-&#38;gt;description       = 'Zip: ' . $form_data[&#34;ship_to_zip&#34;];
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Separate Billing/Shipping Fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/separate-billingshipping-fields#post-146035</link>
			<pubDate>Mon, 11 Feb 2013 20:08:06 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">146035@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;How about using this filter which was contributed by another Gravity Forms user:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/sending-additional-information-to-authorizenet-via-namevalue-pairs#post-143109&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/sending-additional-information-to-authorizenet-via-namevalue-pairs#post-143109&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You can see all the supported fields in the gravityformsauthorizenet/api/lib/AuthorizetNetAIM.php file on line 81:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;private $_all_aim_fields = array(&#38;quot;address&#38;quot;,&#38;quot;allow_partial_auth&#38;quot;,&#38;quot;amount&#38;quot;,
        &#38;quot;auth_code&#38;quot;,&#38;quot;authentication_indicator&#38;quot;, &#38;quot;bank_aba_code&#38;quot;,&#38;quot;bank_acct_name&#38;quot;,
        &#38;quot;bank_acct_num&#38;quot;,&#38;quot;bank_acct_type&#38;quot;,&#38;quot;bank_check_number&#38;quot;,&#38;quot;bank_name&#38;quot;,
        &#38;quot;card_code&#38;quot;,&#38;quot;card_num&#38;quot;,&#38;quot;cardholder_authentication_value&#38;quot;,&#38;quot;city&#38;quot;,&#38;quot;company&#38;quot;,
        &#38;quot;country&#38;quot;,&#38;quot;cust_id&#38;quot;,&#38;quot;customer_ip&#38;quot;,&#38;quot;delim_char&#38;quot;,&#38;quot;delim_data&#38;quot;,&#38;quot;description&#38;quot;,
        &#38;quot;duplicate_window&#38;quot;,&#38;quot;duty&#38;quot;,&#38;quot;echeck_type&#38;quot;,&#38;quot;email&#38;quot;,&#38;quot;email_customer&#38;quot;,
        &#38;quot;encap_char&#38;quot;,&#38;quot;exp_date&#38;quot;,&#38;quot;fax&#38;quot;,&#38;quot;first_name&#38;quot;,&#38;quot;footer_email_receipt&#38;quot;,
        &#38;quot;freight&#38;quot;,&#38;quot;header_email_receipt&#38;quot;,&#38;quot;invoice_num&#38;quot;,&#38;quot;last_name&#38;quot;,&#38;quot;line_item&#38;quot;,
        &#38;quot;login&#38;quot;,&#38;quot;method&#38;quot;,&#38;quot;phone&#38;quot;,&#38;quot;po_num&#38;quot;,&#38;quot;recurring_billing&#38;quot;,&#38;quot;relay_response&#38;quot;,
        &#38;quot;ship_to_address&#38;quot;,&#38;quot;ship_to_city&#38;quot;,&#38;quot;ship_to_company&#38;quot;,&#38;quot;ship_to_country&#38;quot;,
        &#38;quot;ship_to_first_name&#38;quot;,&#38;quot;ship_to_last_name&#38;quot;,&#38;quot;ship_to_state&#38;quot;,&#38;quot;ship_to_zip&#38;quot;,
        &#38;quot;split_tender_id&#38;quot;,&#38;quot;state&#38;quot;,&#38;quot;tax&#38;quot;,&#38;quot;tax_exempt&#38;quot;,&#38;quot;test_request&#38;quot;,&#38;quot;tran_key&#38;quot;,
        &#38;quot;trans_id&#38;quot;,&#38;quot;type&#38;quot;,&#38;quot;version&#38;quot;,&#38;quot;zip&#38;quot;
        );&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>synecticsmedia on "Separate Billing/Shipping Fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/separate-billingshipping-fields#post-145991</link>
			<pubDate>Mon, 11 Feb 2013 16:50:20 +0000</pubDate>
			<dc:creator>synecticsmedia</dc:creator>
			<guid isPermaLink="false">145991@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there a way to add more &#34;Authorize.net Fields Form Fields&#34; under the Authorize.Net Transaction Settings? We have a client that would like separate billing/shipping information. Currently, upon submission, the Authorize.net receipt displays the Billing Address given, but not the Shipping Address. Any help would be appreciated! Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
