Display var_dump data in woocommerce checkout Hook
-
I have this code want to display var_dump data in function Hook
But it is not showing on checkout page . After Checkout Button Click
add_action( ‘woocommerce_checkout_order_processed’, ‘update_withorder’, 10, 3);
function update_map_withorder ( $order_id, $posted_data, $order )
{
var_dump($order);
exit;
}The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Display var_dump data in woocommerce checkout Hook’ is closed to new replies.