ご注文フォーム

LE KOOGEの商品にご興味をお持ちいただきありがとうございます。

下記のご注文フォームよりご注文いただけます。

担当者が確認次第、すぐにご連絡させていただきます。













    function hide_coupon_field( $enabled ) {
    if ( is_cart() || is_checkout() ) {
    / $enabled = false;
    }
    $args = array(
    'posts_per_page' => -1,
    'orderby' => 'title',
    'order' => 'asc',
    'post_type' => 'shop_coupon',
    'post_status' => 'publish',
    );
    $coupons = get_posts( $args );
    if(count($coupons) == 0){ $enabled = false;}

    return $enabled;
    }
    add_filter( 'woocommerce_coupons_enabled', 'hide_coupon_field' );