David Porres

Results 6 comments of David Porres

@kidunot89 Could you check this please? I think it's a quick fix but I don't see the error: The plugin code seems to be ok: ```` return function( $input, AppContext...

I've detected that this code works: ```` function woo_add_cart_fee() { global $woocommerce; $woocommerce->cart->add_fee( __('Custom', 'woocommerce'), 5 ); } add_action( 'woocommerce_cart_calculate_fees', 'woo_add_cart_fee' ); ```` so it seems that the problem is...

I've solved the issue adding the following code to the mutation: ```` ... // Add cart fee. \WC()->cart->add_fee( ...$cart_fee_args ); \WC()->session->set('cart_fee_args', $cart_fee_args); // \sanitize_title( $input['name'] ) ); ```` and then...

@rwaskiewicz Let me know if you have access: https://gitlab.com/david.porres.dev/stencil-types-issue

Thanks @rwaskiewicz !! Could you estimate when it could be solved?