Jump to content

[SOLVED] Paypal allowed up to certain amount only


ZuZu

Recommended Posts

  • 3 months later...
  • 9 months later...

Edit /modules/paypal/paypal.php , Look for the function hookPayment() and add the lines below in it

   public function hookPayment($params)
   {
       if (!$this->active)
           return ;
              if ($params['cart']->getOrderTotal(true, 3) > 200)
                     return;



This can be used on any payment module, it will not display in the payment selection page if the order total is more than 200.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...