Arkadaşlar Paypal TL sorunu için çözüm kodlarını veriyorum. ilk önce catalog/controller/payment klasöründe ki pp_standard.php dosyasını buluyorsunuz. Herhangi bir editör programı ile açıyorsunuz.
Aşağıda ki kodları buluyorsunuz...
// Check for supported currency, otherwise convert to USD.
$currencies = array('AUD','CAD','EUR','GBP','JPY','USD','NZD','CHF','HKD','SGD','SEK','DKK','PLN','NOK','HUF','CZK','ILS','MXN','MYR','BRL','PHP','PLN','TWD','THB');
if (in_array($this->order_info['currency'], $currencies)) {
$currency = $this->order_info['currency'];
} else {
$currency = 'USD';
}
Bunun ile değiştiriyorsunuz.
// Check for supported currency, otherwise convert to USD.
$currencies = array('AUD','CAD','EUR','GBP','JPY','USD','NZD','CHF','HKD','TRY','SEK','DKK','PLN','NOK','HUF','CZK','ILS','MXN','MYR','BRL','PHP','PLN','TWD','THB');
if (in_array($this->order_info['currency'], $currencies)) {
$currency = $this->order_info['currency'];
} else {
$currency = 'TRY';
}
işte bu kadar basit.
Herkese Kolay Gelsin.