こんにちは、プログラマーの山本です。

今回はクライアント様からのご依頼で、
Welartの商品ごとに個別の割引額を設定出来るようにしました。

Welcartのデフォルト設定では、全体の割引率しか設定する事ができないので、
商品ごとに割引額を指定したい場合は、参考にしていただければと思います。

 

各商品に割引額の入力欄をつける

まずは、商品編集ページにカスタムフィールドの入力欄を追加します。

以下のコードを function.php に追加します。

// カスタムフィールドの追加
add_action( 'admin_menu', 'add_custom_field' );
function add_custom_field() {
    add_meta_box( 'custom-discount', '商品個別の割引率', 'create_discount', 'post', 'normal' );
}
// カスタムフィールドのHTML
function create_discount() {
    global $post;
    $keyname = 'item_discount';
    // 保存されているカスタムフィールドの値を取得
    $get_value = get_post_meta( $post->ID, $keyname, true );
    // nonceの追加
    wp_nonce_field( 'action-' . $keyname, 'nonce-' . $keyname );
    // HTMLの出力
    echo '<input name="' . $keyname . '" value="' . $get_value . '">';
}
// カスタムフィールドの保存
add_action( 'save_post', 'save_custom_field' );
function save_custom_field( $post_id ) {
    $custom_fields = ['item_discount'];
    foreach( $custom_fields as $d ) {
        if ( isset( $_POST['nonce-' . $d] ) && $_POST['nonce-' . $d] ) {
            if( check_admin_referer( 'action-' . $d, 'nonce-' . $d ) ) {
                if( isset( $_POST[$d] ) && $_POST[$d] ) {
                    update_post_meta( $post_id, $d, $_POST[$d] );
                } else {
                    delete_post_meta( $post_id, $d, get_post_meta( $post_id, $d, true ) );
                }
            }
        }
 
    }
}

これで商品編集ページに、割引率のカスタムフィールドが追加されました。

この入力欄に、商品個別の割引率を入力して保存しておくことになります。

各商品ページに割引額を表示する。

商品ページの php ファイルにおける、
料金を表示している箇所を以下のように変更します。

※ 商品ページの php ファイルは、お使いのテーマなどによって変わります。

//セール対象のカテゴリかどうか
$is_sale = false;
$salecat = $usces->options['campaign_category'];
$cats = get_the_category();
foreach($cats as $cat){
    if($cat->term_id == $salecat){
        $is_sale = true;
        break;
    }
}
$fields = $usces->itemskus;
foreach( $fields as $key => $field){
    $display = $key == 0 ? "inline-block" : "none";
    $price = $field['price'];
    $discount_p = get_post_meta(get_the_ID(), 'item_discount', true);
    if( ! $is_sale){
        //セール対象ではない商品
        echo "<span class='product-price sku{$key}' style='display:{$display};'>¥".number_format($price)."(税込)</span>";
    }else{
        if($discount_p != '' && $discount_p > 0){
            //セール対象かつ、商品個別の割引率が設定されている場合
            $price2 = $price * (100 - $discount_p) * 0.01;
            echo "<span class='product-price sku{$key}' style='display:{$display};'>
                    <s>¥".number_format($price)."(税込)</s>
                    <br><span style='color:#f33;'>
                    ¥".number_format($price2)."(税込)".((1-$price2/$price)*100)."%OFF</span>
                </span>";
        }else{
            //セール対象かつ、商品個別の割引率が設定されていない場合(全体の割引率を設定)
            $sale_type = $usces->options['campaign_privilege'];
            $sale_discount = $usces->options['privilege_discount'];
            if($sale_type == 'discount' && $sale_discount != '' && $sale_discount > 0 ){
                $price2 = $price * (100 - $sale_discount) * 0.01;
                echo "<span class='product-price sku{$key}' style='display:{$display};'>
                        <s>¥".number_format($price)."(税込)</s>
                        <br><span style='color:#f33;'>
                        ¥".number_format($price2)."(税込)".((1-$price2/$price)*100)."%OFF</span>
                    </span>";
            }else{
                echo "<span class='product-price sku{$key}' style='display:{$display};'>
                        ¥".number_format($price)."(税込)
                    </span>";
            }
        }
    }
}

カートにおける割引額の計算を修正する。

カートに商品を入れたときの割引表示を修正します。

以下のコードを function.php に追加してください。

//商品別の値引き
add_filter('usces_order_discount', 'product_order_discount', 10, 2);
function product_order_discount($discount, $cart){
    global $usces;
    //セール情報の取得
    $salecat = $usces->options['campaign_category'];
    $sale_type = $usces->options['campaign_privilege'];
    $sale_discount = $usces->options['privilege_discount'];
    $discount = 0;
    foreach($cart as $product){
	$postid = $product['post_id'];
	$post_categories = wp_get_post_categories( $postid );
	//セール対象の商品のみ適用
	if(array_search($salecat, $post_categories) !== false){
	    $discount_p = get_post_meta($postid, 'item_discount', true);
	    if($discount_p != ''){
                $discount += $product['price'] * $product['quantity'] * $discount_p * -0.01;
	    }else{
		if($sale_type == 'discount'){
	    	    $discount += $product['price'] * $product['quantity'] * $sale_discount * -0.01;
		}
	    }
	}
    }
    return $discount;
}

(必要に応じて)個別の割引額から送料無料条件を更新する。

送料が◯円以下なら無料といった設定にしている場合、
割引によって送料無料条件から外れる可能性があります。

ここでは、割引額を計算した後の最終合計料金から送料を計算するように修正します。

以下のコードを function.php に追加してください。


//送料を割引後の価格に適応
add_filter( 'usces_filter_set_cart_fees_shipping_charge', 'my_filter_set_cart_fees_shipping_charge', 10, 3);
function my_filter_set_cart_fees_shipping_charge($shipping_charge, $carts, $entries){
    global $usces;
    //discount更新
    $salecat = $usces->options['campaign_category'];
    $sale_type = $usces->options['campaign_privilege'];
    $sale_discount = $usces->options['privilege_discount'];
    $entries['order']['discount'] = 0;
    foreach($carts as $product){
	$postid = $product['post_id'];
	$post_categories = wp_get_post_categories( $postid );
	if(array_search($salecat, $post_categories) !== false){
	    $discount_p = get_post_meta($postid, 'item_discount', true);
	    if($discount_p != ''){
		$discount += $product['price'] * $product['quantity'] * $discount_p * -0.01;
	    }else{
		if($sale_type == 'discount'){
		    $discount += $product['price'] * $product['quantity'] * $sale_discount * -0.01;
		}
	    }
	}
    }
    $entries['order']['discount'] += $discount;
    $entries['order']['total_price'] = intval($entries['order']['total_items_price']) + intval($entries['order']['discount']);
    $entries['order']['total_full_price'] = $entries['order']['total_price'];
    //送料再取得
    $shipping_charge = $usces->options['shipping_charge'][0]['JP'][$entries['customer']['pref']];
    //送料無料条件
    $free_border_price = intval(preg_replace('/[^0-9]/', '', $usces->sc_postage_privilege()));
    if ($entries['order']['total_price'] >= $free_border_price) {
    	$shipping_charge = 0;
    }
    return $shipping_charge;
}

まとめ

Welcartには便利なフックがたくさん用意されているので、
それらを活用して商品個別の割引設定を行うようにしました。

計算式や商品ページのデザイン等は、お好みに合わせて修正して使ってください。

制作の依頼はこちら

もし、記事を読んでもご自分では実装が難しい場合は、
以下のフォームから弊社にご相談くださいませ。

今回とシステム以外にも、

Welcartにおけるシステムの追加やカスタマイズ、
Wordpressのテーマやプラグインのカスタマイズなど、
ウェブに関するご依頼ならほとんど対応可能です。

簡単なシステムなら1件¥3,000(税別)から承っております。

相場よりも費用を抑えて対応させていただくことが可能ですので、
以下のフォームから相談内容を記入して気軽にご連絡ください。

    必須 お名前

    必須 メールアドレス

    任意 サイトのURL

    必須 ご依頼内容や相談内容

    ※出来るだけ具体的に記載していただけると進行がスムーズになります。

    任意 画像やPDF

    ※必要があれば添付してください。





    原則2営業日以内に、ご返信させていただきます。