WebSite X5Help Center

 
Joe Debellis
Joe Debellis
User

Need to integrate shopping cart to my processor  en

Author: Joe Debellis
Visited 2354, Followers 2, Shared 0  

I just opened an account with Authorize.net for credit card processing for my website, but I, later, found out that they only support "Simple Check out button" for donations or a couple of products. My website has more the 100 products, and I do not know of which processor to use here in USA. They also told me to create a pay now button for every item I sell, and that's crazy, like I said I have more than 100 items on the website. The bank associated with my account is PaymentTech (JP Morgan Chase) They told me they support a lot of processors, but they did not provide a list. If I find one I would have to let them know and they would tell me if that particular processor is on their list. Can you please suggest a USA processor, maybe you guys know more about this. In case you need to look at my website , to get an idea, the address is: DigitalFishArt.com

Thank you in advance for your help!

Joe

Posted on the
9 ANSWERS
JJ. JUAG
JJ. JUAG
User

You should insert the data for order_no and price the calling code of payment, so that payment can be made.Otherwisethe call from the shopping cart system works alreadyRead the instructions in the help file.

The order_no is for the entire order with different products in the shopping cartThe price must be cast depending on the specification of the payment institution may be an integer in cents[PRICE, 100, ####]


Greeting JJ.

Read more
Posted on the from JJ. JUAG
Joe Debellis
Joe Debellis
User
Author

Hello JJ,

I appreciate your help, but I do not understan I to do what you just told me.

Were can i find the specific file related to this issue?

Thank you,

Joe

Read more
Posted on the from Joe Debellis
Incomedia
Claudio D.
Incomedia

Hello Joe,

the shooping cart system is built to send to the payment system only the order number and the total price so it can be seen to them as one product which simplifies the integration. You will need to use the custom HTML code they provide you and in the description field add the variable [ORDER_NO] and in the price field the variable [PRICE] so these fields will be filled by the program during the order. In this way the customer will pay the total price and you will be able to recognise the order from the order number in the payment description.

Many thanks!

Read more
Posted on the from Claudio D.
Joe Debellis
Joe Debellis
User
Author

Would you be so kind to help me with the custom HTML string. Here is what the bank gave me, but I do not know were to add the variables:

<form name="PrePage" method = "post" action = "https://Simplecheckout.authorize.net/payment/CatalogPayment.aspx"> <input type = "hidden" name = "LinkId" value ="be6f38dc-3cbc-4585-89dd-1e4022d7ec2e" /> <input type = "submit" value = "PAY NOW" /> </form>

Any help would be greatly appreciated.

Grazie,

Joe (Giuseppe)

Read more
Posted on the from Joe Debellis
JJ. JUAG
JJ. JUAG
User

Do you need 2 (or more) additional input fields more. For amount and order.
See here:
https://developer.authorize.net/api/reference/index.html#payment-transactions-capture-a-previously-authorized-amount

Individual programming is beyond the scope of this forum.
Excitation, provided that their source references:

<form name="PrePage" method = "post" action = "https://Simplecheckout.authorize.net/payment/CatalogPayment.aspx">
<input type = "hidden" name = "LinkId" value ="be6f38dc-3cbc-4585-89dd-1e4022d7ec2e" /> <input type = "hidden" name = "amount" value ="[PRICE]" /> <input type = "hidden" name = "order" value ="[ORDER_NO]" /> <input type = "submit" value = "PAY NOW" /> </form>

Please test yourself and see whether data transmission ok. Whether additional fields are required.

Regards JJ.

Read more
Posted on the from JJ. JUAG
Joe Debellis
Joe Debellis
User
Author

Still does not work, but thanks for your help!! When the order is placed on my website, it goes to the Authorize.net gateway page and it does not say the right total amount!!

Read more
Posted on the from Joe Debellis
JJ. JUAG
JJ. JUAG
User

The information we have an approach, as it must be programmed, as we can see, the amount is not the correct format, so needs to be adjusted. The order number is probably in another field, which would be analyzed.
Since these works can not be carried out in this forum, you need someone who can run.
If you find anyone in their language, we could work out the actual costs.

JJ.
Contact via our profile via homepage possible.

Read more
Posted on the from JJ. JUAG