Skip to content

Instantly share code, notes, and snippets.

@mehedicsit
Created January 24, 2018 05:57
Show Gist options
  • Select an option

  • Save mehedicsit/fdcb9a8d7f7bf3cdaea478486d861a14 to your computer and use it in GitHub Desktop.

Select an option

Save mehedicsit/fdcb9a8d7f7bf3cdaea478486d861a14 to your computer and use it in GitHub Desktop.
woo-commerce conditional payment method
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