rick0012 Posted August 1, 2023 Share Posted August 1, 2023 I have two payment method in prestashop version 8. I want it such that when the cart value is above INR 3999 only payment option 2 should be available. How do I do this? Link to comment Share on other sites More sharing options...
Nishith Nesdiya Posted August 1, 2023 Share Posted August 1, 2023 Hello, modify the payment module file with function public function hookPaymentOptions($params) { $cart = $params['cart']; if($cart->getOrderTotal(true, Cart::BOTH) < 9999) { return []; } //code here.... } 1 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