cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

NOPdesign cart integration Question

The NOPdesign cart is relatively simple to use. See http://www.nopdesign.com/freecart/.  The suggested gateway syntax for authorize.net is:

 

 

<FORM ACTION="https://secure.authorize.net/gateway/transact.dll" METHOD="POST">	
      <SCRIPT>
         CheckoutCart();
      </SCRIPT>
   <INPUT TYPE=HIDDEN NAME="x_Login" VALUE="--ENTER YOUR ID HERE--">
   <INPUT type=submit value="Proceed to payment">
   </FORM>

 

The CheckoutCart () script hands off the following to the gateway:

 

x_Version

x_Show_Form

x_Description

x_Amount.

 

We read through the SIM Guide and have two questions.

 

1. Will x_Show_Form provide a payment field for credit card and expiration date and security code for the customer to fill out - without any additional requests for billing and shipping addresses (which we collect on the website)?

 

2. Are the above four terms enough? Would more be required?

 

We would like it to be enough.

 

Basically, all we want is for the customer to input credit card info - nothing else.

 

Any help would be appreciated.

 

 

biot
Member
2 REPLIES 2

1)Is depend on how the merchant account settings

Login to the merchant account

Account Settings

Payment Form

Form Fields

 

2)Not enough, need the 3 Fingerprint fields, here is the Minimum Required Fields
http://developer.authorize.net/guides/SIM/wwhelp/wwhimpl/js/html/wwhelp.htm#href=Appendix_A.html

RaynorC1emen7
Expert
Much thanks.