Tirthrajsinh Parmar
Tirthrajsinh Parmar

Reputation: 158

How to handle multiple websites using one PAYPAL Business account?

i want to use one account with multiple websites so it transfers all paypal balance in one accounts.

now if i redirect it with dynamically using CURL then it gives blank payment response and it gives a popup with continue button and firefox first redirect to that page and mobile browsers also get blank response because of SSL.

And when i follow the steps of Paypal PDT steps it redirects from both websites to a same defined URL as per steps. steps are given in this page. (CLICK FOR PDT STEPS)

And i don't want to create two business accounts in one payple account so can i handle multiple website payments in one business account...? if yes then how it will possible?

in sort i want to handle multiple websites using single BUSINESS account without getting ssl warning in any website while it redirects from PAYPAL after paypal transaction.

Upvotes: 0

Views: 2821

Answers (2)

panos
panos

Reputation: 465

What you are looking for is the page_style variable.

PayPal allows you to create several page styles in your account (no additional accounts required). You can read here for instructions on how to customize these page styles.

Once you have your page styles ready you can use them in the form or button with the page_style variable by giving it as value the name of a specific page style you created on your account :

<input type="hidden" name="page_style" value="somestyle">

Upvotes: 0

Grishka
Grishka

Reputation: 49

How about notify_url variable? It's called differently in regards to API you are using. More details: https://developer.paypal.com/docs/classic/ipn/integration-guide/IPNSetup/

Upvotes: 1

Related Questions