hook into admin add order item 2f product on add 2fsubmit

Solutions on MaxInterview for hook into admin add order item 2f product on add 2fsubmit by the best coders in the world

showing results for - "hook into admin add order item 2f product on add 2fsubmit"
Russell
16 Feb 2019
1<?php
2// define the woocommerce_ajax_add_order_item_meta callback 
3function action_woocommerce_ajax_add_order_item_meta( $item_id, $item ) 4  // make action magic happen here... 
5};          
6// add the action 
7add_action( 'woocommerce_ajax_add_order_item_meta', 'action_woocommerce_ajax_add_order_item_meta', 10, 2 );