Quote Originally Posted by bn17311 View Post
try this, im no expert so someone could tell us if it causes any problems elsewhere

in /includes/modules/payment/paypal/tpl_ec_button.php

line 93 lets you limit paypal amount,

....
There is no line 93 in the standard install.

This is the code to find starting around line 46:

Code:
  // PayPal module cannot be used for purchase > $10,000 USD or 5500 GBP
  if ( ($_SESSION['currency'] == 'USD' && $currencies->value($_SESSION['cart']->total, true, 'USD') > 10000)
    || ($_SESSION['currency'] == 'GBP' && $currencies->value($_SESSION['cart']->total, true, 'GBP') > 5500) ) {
    $paypalec_enabled = false;
  }