Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

hook into admin add order item / product on add/submit

<?php
// define the woocommerce_ajax_add_order_item_meta callback 
function action_woocommerce_ajax_add_order_item_meta( $item_id, $item ) {     
  // make action magic happen here... 
};          
// add the action 
add_action( 'woocommerce_ajax_add_order_item_meta', 'action_woocommerce_ajax_add_order_item_meta', 10, 2 ); 
Source by hookr.io #
 
PREVIOUS NEXT
Tagged: #hook #admin #add #order #item #product
ADD COMMENT
Topic
Name
7+4 =