- Welcart Shop 1.9.30
- WordPress 5.4
1 2 3 4 5 6 7 8 9 10 11 12 |
// -- 消費税を商品にのみ添加する -------------- // // usc-e-shop/classes/usceshop.class.php // function getTax( $total, $materials = array() ) { で処理される add_filter('usces_filter_getTax', function ($tax){ global $usces; $total_items_price = $usces->get_total_price(); $tax_rate = $usces->options['tax_rate']; // 消費税率を取得 $tax = $total_items_price * ($tax_rate / 100); return $tax; }); // -- 消費税を承認にのみ添加する -- ここまで ---------- |