Advertisement
lorro

WooCommerce - Hide coupon field on checkout

Feb 2nd, 2017
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2.   // WooCommerce hide coupon field on checkout
  3.   // code goes in functions.php for your child theme
  4.   add_filter( ‘woocommerce_coupons_enabled’, ‘hide_coupon_field_on_checkout’ );
  5.   function hide_coupon_field_on_checkout( $enabled ) {
  6.     if ( is_checkout() ) {
  7.       $enabled = false;
  8.     }
  9.     return $enabled;
  10.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement