這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 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

螢幕擷圖

安裝方式

  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〉的開發相關工作。

參與者