——————————————-
WordPress のバージョン:(例 4.7.10)
Welcart のバージョン:(例 1.9.10)
Welcart専用の拡張プラグイン:なし
ご利用のテーマ:Welcart Basic
症状を確認したブラウザ:Chrome
サーバー:Xserver
SSLの利用:常時SSL
WordPress のパーマリンク設定:/%category%/%post_id%.htm
——————————————–
お世話になっております。
現在、ECサイトを構築中ですが、
ここで紹介されているフィルターをfunctions.phpに設置しましたが
お買い上げ下金額に、送料が含めたままとなっています。
送料別の商品代金が3千円以上を無料にしたいので、
よろしくお願いします。
add_filter('usces_filter_set_cart_fees_amount_by_cod', 'my_filter_set_cart_fees_amount_by_cod', 10, 6);
function my_filter_set_cart_fees_amount_by_cod( $amount_by_cod, $entries, $total_items_price, $use_point, $discount, $shipping_charge ){
return $total_items_price;
}