php - Localize this PayPal link: webscr -
i'm using wordpress plugin redirect buyers to:
https://www.paypal.com/cgi-bin/webscr
but i'd redirect them italian localized page can sense @ home in paypal italian page.
the snippet of code is:
$code = '<form action="https://www.paypal.com/cgi-bin/webscr" name="ppform'.$randval.'" method="post">'; and buyer receive this:
product: name amount: 10.00 eur buyer email: email@email download link: link
any idea?
with payments standard can utilize currency_code parameter set currency used during checkout , displayed on paypal pages.
you can utilize lc parameter set locale code well, effects language on paypal checkout pages. in case seems can accomplish want adding next button code / standard checkout code.
<input type="hidden" name="lc" value="it" /> <input type="hidden" name="currency_code" value="eur" /> php wordpress paypal localization
No comments:
Post a Comment