How to add additional fees to different products in WooCommerce cart
I use this code to add additional fee to a specific product id's. The problem is that I can add only one fee to a different products id's. add_action('woocommerce_cart_calculate_fees', 'add_fees_on_ids'); function add_fees_on_ids() { if (is_admin() && !defined ('DOING_AJAX')) {return;} foreach(…