Created
January 24, 2018 05:57
-
-
Save mehedicsit/fdcb9a8d7f7bf3cdaea478486d861a14 to your computer and use it in GitHub Desktop.
woo-commerce conditional payment method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action('woocommerce_check_cart_items','condtiontal_checkoout_total'); | |
| function condtiontal_checkoout_total(){ | |
| if ( WC()->cart->total > 10000 ) {?> | |
| <style> | |
| li.wc_payment_method.payment_method_stripe { | |
| display: none; | |
| } | |
| </style> | |
| <?php } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment