Forked from sayful1/add-custom-fee-to-woocommerce-cart-dynamically.php
Created
August 8, 2020 05:09
-
-
Save pickplugins/cd7f3a3417b32d5ca1ad4643ac1eca4e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * WooCommerce Extra Feature | |
| * -------------------------- | |
| * | |
| * Add custom fee to cart automatically | |
| * | |
| */ | |
| function woo_add_cart_fee() { | |
| global $woocommerce; | |
| $woocommerce->cart->add_fee( __('Custom', 'woocommerce'), 5 ); | |
| } | |
| add_action( 'woocommerce_cart_calculate_fees', 'woo_add_cart_fee' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment