WooCommerce: check coupon meta on applying

575 Views Asked by At

UPDATE Code for checkbox is:

// Add a custom checkbox to Admin coupon settings pages
add_action( 'woocommerce_coupon_options', 'add_coupon_option_checkbox', 10 );
function add_coupon_option_checkbox() {
    woocommerce_wp_checkbox( array(
        'id'            => 'coupon_options',
        'label'         => __( 'Enable option 2', 'woocommerce' ),
        'description'   => __( 'Make this coupon to not be runned below amount of $200', 'woocommerce' ),
        'desc_tip'      => false,
    ) );
}
// Save the custom checkbox value from Admin coupon settings pages
add_action( 'woocommerce_coupon_options_save', 'save_coupon_option_checkbox', 10, 2 );
function save_coupon_option_checkbox( $post_id, $coupon ) {
    update_post_meta( $post_id, 'coupon_options', isset( $_POST['coupon_options'] ) ? 'yes' : 'no' );
}

I want to create a custom checking function that will return false or true to custom checkbox that is checked on coupon backend page. If checkbox is cheched i need to return true, else false. This is function i writed:

    function check_coupon_option_1_or_2() {
    $applied_coupons = WC()->cart->get_applied_coupons();

    if( sizeof($applied_coupons) > 0 ) {
        // Loop through applied coupons
        foreach( $applied_coupons as $coupon_code ) {
            $coupon = new WC_Coupon( $coupon_code );
            if( $coupon->get_meta('coupon_options') === 'yes' ) {
                return true;
                break;
            } 
            elseif ( $coupon->get_meta('coupon_options') === 'no' ) {
                return false;
                break;
            }
        }
    }
}
0

There are 0 best solutions below