How can I set one or more languages for the login or sign-up page

IberoMedia
Member
Member

Hello,

 

I have a website that is billingual. Some users choose to see page in English, and some users choose to see page in Spanish. I would like the paypal page that appears after the user has clicked the Pay Now button to display the language that the user was seeing the webpage on. 

 

I imagine I need to create two different buttons. Is there a field I can add to the button form to tell paypal that I need the payment page to be displayed in a language for example

 

LANGUAGE: es_ES

 

or something like that?

 

Thank you

Login to Me Too
1 ACCEPTED SOLUTION

Accepted Solutions
Solved

IberoMedia
Member
Member

I have created two different buttons. One is displayed in the english page and one is displayed in the spanish page

 

Once I created the button with the paypal wizard for the button, I added to the for the following input field:

 

SPANISH

<input type="hidden" name="locale.x" value="es_XC">

 

ENGLISH

<input type="hidden" name="locale.x" value="en_XC">

 

In otherwords, the button code I pasted in Spanish page would look liek this:

 

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">

<input type="hidden" name="locale.x" value="es_XC" />

<input type="hidden" name="cmd" value="_s-xclick" />

<input type="hidden" name="hosted_button_id" value="ALGUNVALOR" />

<input type="image" name="submit" src="https://www.paypalobjects.com/es_XC/i/btn/btn_paynowCC_LG.gif" alt="PayPal, la forma más segura y rápida de pagar en línea." />

<img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" />

</form>

 

And the code for the button placed in the English pages, the button code would look like:

 

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">

<input type="hidden" name="locale.x" value="en_XC">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="SOMEVALUE" />
<input type="image" name="submit" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" alt="PayPal - The safer, easier way to pay online!" />
<img src="https://www.paypalobjects.com/es_XC/i/scr/pixel.gif" border="0" alt="" width="1" height="1" />
</form>

 

 I THANK skier who provide answer through the following post: https://www.paypal-community.com/t5/How-to-use-PayPal/Limited-language-options-why-paypal-why/m-p/26...

 

 

View solution in original post

Login to Me Too
1 REPLY 1
Solved

IberoMedia
Member
Member

I have created two different buttons. One is displayed in the english page and one is displayed in the spanish page

 

Once I created the button with the paypal wizard for the button, I added to the for the following input field:

 

SPANISH

<input type="hidden" name="locale.x" value="es_XC">

 

ENGLISH

<input type="hidden" name="locale.x" value="en_XC">

 

In otherwords, the button code I pasted in Spanish page would look liek this:

 

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">

<input type="hidden" name="locale.x" value="es_XC" />

<input type="hidden" name="cmd" value="_s-xclick" />

<input type="hidden" name="hosted_button_id" value="ALGUNVALOR" />

<input type="image" name="submit" src="https://www.paypalobjects.com/es_XC/i/btn/btn_paynowCC_LG.gif" alt="PayPal, la forma más segura y rápida de pagar en línea." />

<img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" />

</form>

 

And the code for the button placed in the English pages, the button code would look like:

 

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">

<input type="hidden" name="locale.x" value="en_XC">
<input type="hidden" name="cmd" value="_s-xclick" />
<input type="hidden" name="hosted_button_id" value="SOMEVALUE" />
<input type="image" name="submit" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" alt="PayPal - The safer, easier way to pay online!" />
<img src="https://www.paypalobjects.com/es_XC/i/scr/pixel.gif" border="0" alt="" width="1" height="1" />
</form>

 

 I THANK skier who provide answer through the following post: https://www.paypal-community.com/t5/How-to-use-PayPal/Limited-language-options-why-paypal-why/m-p/26...

 

 

Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.