LoginSignup
0
0

More than 5 years have passed since last update.

Welcartでレビューを書いて送料無料を実現する

Last updated at Posted at 2017-11-25

楽天でよくあるレビューを書いて送料無料

どうしてもやらないといけなかったのでやりました。今回のやり方で大前提は「送料が全国一律固定である場合」を想定しています。それ以外の場合はなんとかがんばってください。

カスタムオーダーフィールドを設定する

まずはカスタムオーダーフィールドに以下のように追加。

スクリーンショット 2017-11-25 21.52.37.png

次にfunctions.phpに書き加えます。

functions.php
add_filter('usces_filter_set_cart_fees_shipping_charge', 'review_fees_shipping_charge', 10, 3);
function review_fees_shipping_charge($shipping_charge, $carts, $entries){
    if($entries['custom_order']['review'] == "レビューを書かない(+680円)"){
            $shipping_charge += 680;
    }
    return $shipping_charge;
}

完成です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0