skip to Main Content

Woocommerce – Custom Plugin for add fee in cart

my code working fine in functions file how i can create a custom plugin for working this code ? add_action( 'woocommerce_cart_calculate_fees' , 'wpdesk_checkout_fee' ); add_action( 'woocommerce_after_cart_item_quantity_update', 'wpdesk_checkout_fee' ); function wpdesk_checkout_fee() { global $woocommerce; $items = $woocommerce->cart->get_cart(); $list = array(); foreach($items…

VIEW QUESTION
Back To Top
Search