ZuZu Posted October 12, 2009 Share Posted October 12, 2009 Would it be possible to allow Paypal as a payment method only up to a certain amount? I would only like to offer Paypal for smaller orders, up to say 200 EUR. Thanks! Link to comment Share on other sites More sharing options...
Sanis Posted February 9, 2010 Share Posted February 9, 2010 Iam interested in this too. Link to comment Share on other sites More sharing options...
gruzzi Posted December 7, 2010 Share Posted December 7, 2010 me too!!but in general: restriction to different payment methods...thanks for help :-) Link to comment Share on other sites More sharing options...
tomerg3 Posted December 8, 2010 Share Posted December 8, 2010 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 More sharing options...
gruzzi Posted December 8, 2010 Share Posted December 8, 2010 you are a genius!! thanx a lot! much appriciate!! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now