このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

WooBooster Additional Charges for WooCommerce

説明

**WooBooster Additional Charges for WooCommerce is a powerful plugin designed to enhance your WooCommerce store by allowing you to add extra fees to the checkout process based on various conditions. Whether you want to apply additional charges for specific shipping zones, payment methods, or even a custom fee structure like Cash on Delivery (COD) extra charges, this plugin offers full flexibility. It helps store owners implement tailored pricing models and improve the checkout experience for customers.

With WooBooster Additional Charges for WooCommerce, you can easily manage and control additional fees directly from the WordPress admin panel, making it easier to increase revenue and provide a better customer experience. This plugin seamlessly integrates with WooCommerce, and all charges are added dynamically based on customer selections, such as shipping method or payment method.

**Plugin Features**

  • Add / Manage and control additional fees directly from the WordPress admin panel based on shipping method and payment mode
  • On checkout page, all charges are added dynamically based on customer selections, such as shipping method or payment method

If you want more information about this plugin or another one don’t doubt to visit our website: https://www.woobooster.com/

TECHNICAL SUPPORT

If any problem occurs, please contact us at support@woobooster.com

スクリーンショット

  • How to enable Additional Charges for WooCommerce
  • Add Additional Charges optional for all
  • Add Additional Charges based on shipping zone and payment method
  • Display Additional Charges on Checkout Page
  • Display Additional Charges on Checkout Page based on shipping zone and payment method
  • Additional Charges information on thankyou Page
  • Additional Charges in order details page

インストール

  1. Upload the directory /wb-additional-charges-for-woocommerce/ to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Click on edit any page to post page and add your seo meta keywords forpages, post, products

評価

2025年8月8日
I am Shashank (Same user who posted bugs on your partial COD plugin).Check my updated comment reporting another bug with screenshot on your partial COD plugin as well.with this fees plugin there is a bug with taxation.ISSUE is that Partial COD amount does not contains feesTax but cart total contains it.On checkout page, cart total is displaying fees with adding feesTax above the fees but after that it is conflicting with partial COD. on woobooster-partial-cod.php is getting the $fee->tax as ZERO under function: woobooster_partial_cod_calculate_partial_payment_fee($cart)SUGGESTED SOLUTION:1. give checkmark for tax included/ excluded and tax percentage on fee in the fee setting dashboard2. on checkout page, feeTax amount should not be zero, so that partial COD calculation should get match with cart total.TECHNICALL/ CODE:under wb-additional-charge.php > under WBACFW_add_additional_fees(WC_Cart $cart) :replace $tax_enable code with below logic: // !isTaxIncluded == (calculateTaxByWoo | taxNotCalculatedMannually | taxNotIncludedYet | enableExtraTaxByWoo) $isTaxIncluded = get_option(‘woocommerce_prices_include_tax’) === ‘yes’; //shashank foreach ($fees as $fee) { if ( (!empty($fee[’shipping_zone’]) && ($fee[’shipping_zone’] == $selected_shipping_zone_id || $fee[’shipping_zone’] == ‘all’)) && (!empty($fee[’payment_method’]) && ($fee[’payment_method’] == $payment_method || $fee[’payment_method’] == ‘all’)) ) { $cart->add_fee($fee[’name’], (float) $fee[’amount’], !$isTaxIncluded); // (✓) calculate tax ( if tax not included ) } elseif ( (!empty($fee[’shipping_zone’]) && $fee[’shipping_zone’] == ‘all’) && (!empty($fee[’payment_method’]) && $fee[’payment_method’] == ‘all’) ) { $cart->add_fee($fee[’name’], (float) $fee[’amount’], !$isTaxIncluded); // (✓) calculate tax ( if tax not included ) } }
1件のレビューをすべて表示

貢献者と開発者

WooBooster Additional Charges for WooCommerce はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“WooBooster Additional Charges for WooCommerce” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。