Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function add_coupon_list_checkbox( $post, $post_id, $include_stats ) {
  2. woocommerce_wp_checkbox( array( 'id' => 'include_stats', 'label' => __( 'Coupon check list', 'woocommerce' ), 'description' => sprintf( __( 'Includes the coupon in coupon check drop-down list', 'woocommerce' ) ) ) );
  3. $include_stats = isset( $_POST['include_stats'] ) ? 'yes' : 'no';
  4. update_post_meta( $post_id, 'include_stats', $include_stats );
  5. }add_filter( 'woocommerce_coupon_data' , 'add_coupon_list_checkbox' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement